当前位置: 代码迷 >> 综合 >> 数据迁移之表结构和数据一起迁移-PostgreSQL
  详细解决方案

数据迁移之表结构和数据一起迁移-PostgreSQL

热度:67   发布时间:2023-09-28 22:31:38.0

私有环境部署或迁移数据,整体的数据迁移包括数据库表结构和数据

导出使用 pg_dump

pg_dump  -h localhost -U postgres -d datas -j 8 -F d -f  /opt/datacopy

-h :IP地址 localhost 数据源IP
-U :用户
-d : 数据库名
-f :数据导入的地址文件名

导入 pg_restore

pg_restore -U postgres -d datas -j 8 -F d datacopy/ ; date '+%F %T'
  相关解决方案