2012-05-01から1ヶ月間の記事一覧

実行中のSQLの表示 メモ

何回実行しても覚えられない... SELECT procpid, start, now() - start AS lap, current_query FROM (SELECT backendid, pg_stat_get_backend_pid(S.backendid) AS procpid, pg_stat_get_backend_activity_start(S.backendid) AS start, pg_stat_get_backend…

Git 強制的に PULL する メモ

$ git checkout -- . $ git pull origin master

の タイムゾーン timezone の設定 メモ

PHP

こんなメッセージが出たら PHP Warning: strftime(): It is not safe to rely on the system's timezone settin gs. You are *required* to use the date.timezone setting or the date_default_time zone_set() function. In case you used any of those me…