Tag: PostgreSQL/運用
$ su root # su postgres $ createuser sora $ ...allowd create databases? y $ ...allowed to add users? y
sudo -u postgres createuser
-P | パスワードプロンプトの表示 |
-D | データベース作成の禁止 |
-A | ユーザーの追加を禁止?(ヘルプに表示されず) |
$ dropuser sora
psql -U postgres
select * from pg_roles;
alter role tom createdb;
psql -l
psql -U postgres -d sampledb
\d testtable
psql -U postgres -d sampledb SELECT last_value * FROM xxxx_seq
SELECT setval('xxxx_seq','1234');