PostgreSQL:常用命令:修订间差异

来自WHY42
Riguz留言 | 贡献
已建立頁面,內容為 "<source lang="bash"> psql -U postgres \l # 列出数据库 \c database # 连接 psql -f data.sql db_name </source> Category:Database"
 
Riguz留言 | 贡献
无编辑摘要
 
第5行: 第5行:
\c database  # 连接
\c database  # 连接
psql -f data.sql db_name
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>
</source>
</source>


[[Category:Database]]
[[Category:Database]]

2020年9月10日 (四) 09:00的最新版本

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>