pg_dump、pg_restore实践

2020-07-10  本文已影响0人  Hmcf

常见选项

pg_dump实践
su - postgres
pg_dump -Fc -s -f testdbschema.sql testdb
su - postgres
pg_dump -Fc -a -f testdbdata.sql testdb
su - postgres
pg_dump -Fc -f testdbschemadata.sql testdb
pg_dump -Fc -s -t citycode -f citycode_tab.sql testdb
pg_dump -Fc -a -t citycode -f citycode_data.sql testdb
pg_dump -Fc -t citycode -f citycode_tabdata.sql testdb
pg_restore实践
su - postgres
pg_restore -s -d testdb testdbschema.sql  
su - postgres
pg_restore -a -d testdb testdbdata.sql 
su - postgres
pg_restore -d testdb testdbschemadata.sql 
pg_restore -s -t citycode -d testdb citycode_schema.sql
pg_restore -a -t citycode -d testdb citycode_data.sql
pg_restore -t citycode -d testdb citycode_schemadata.sql
上一篇下一篇

猜你喜欢

热点阅读