创建数据库:
1 | createdb -h localhost -U postgres -p 5432 mydb |
用户登陆:
1 | psql -h localhost -U postgres -p 5432 mydb |
以超级用户登陆:
1 | sudo su - postgres 1234567890 |
删除或者创建用户皆以数据库为依托:
1 | psql sqlname |
创建角色和将数据库分配给角色:
1 | CREATE ROLE name PASSWORD 'string' |
删除表:
1 | DROP TABLE tablename |
删除表数据,但保留表结构:
1 | delete from users |
超级管理员 postgres 登录,创建数据库并移交给某个用户:
1 | psql -h localhost -U postgres |
超级管理员直接创建数据库(所有者为超级管理员):
1 | createdb -h localhost -U postgres -p 5432 tempDB |
备份和恢复:
1 | pg_dump -h localhost -U sunshuai tempdb > dumpfile |
赋予角色登陆权限
1 | psql -h localhost -U postgres |