2011-04-01から1ヶ月間の記事一覧

postgresqlに関して

postgresqlに関して触れたのでメモ DB操作 ■DB作成 ※postgresユーザーで実行 $createdb -U ユーザー名 DB名■DB削除 ※postgresユーザーで実行 $dropdb DB名■ログイン $psql ユーザー名 DB名 バックアップ/リストア ■バックアップ取得 $pg_dump -U ユーザー名 …