かぴぶろぐ

またかぴったかと思った・・・(´A`;)

Postgres基本コマンド

カテゴリ[ Postgres ]
コマンドの使い方
起動 $ pg_ctl start
停止 $ pg_ctl stop
ユーザー登録 $ createuser testuser
Shall the new user be allowed to create databases? (y/n) y
Shall the new user be allowed to create more new users? (y/n) n
ユーザー削除 $ dropuser testuser
データベースの作成 $ createdb -U testuser testdb
データベース一覧 $ psql -l
psql ログイン $ psql -U testuser testdb

http://kapi.jp/kapi_blog/54

2007年07月05日

関連カテゴリ Postgres

この記事のコメント

この記事にコメントする