PostgreSQL:常用命令

来自WHY42
psql -U postgres

\l           # 列出数据库
\c database  # 连接
psql -f data.sql db_name

# 导出与还原
pg_dump -h <host> -U <user> -W -F t <database> > demo_09101521.tar
pg_restore --no-privileges --no-owner -h <host> -d <database> demo_09101521.tar -c -U <user>