pg_dump -U username databasename -W -s -t tablename-s, --schema-only 只转储模式, 不包括数据-t, --table=TABLE 只转储指定名称的表
还原:createdb newDBnamepsql -d newDBname -U postgres -f dump.sqlpostgres是用户名newDBname是数据库名dump.sql是文件名
本文共 284 字,大约阅读时间需要 1 分钟。
pg_dump -U username databasename -W -s -t tablename-s, --schema-only 只转储模式, 不包括数据-t, --table=TABLE 只转储指定名称的表
还原:createdb newDBnamepsql -d newDBname -U postgres -f dump.sqlpostgres是用户名newDBname是数据库名dump.sql是文件名
转载于:https://www.cnblogs.com/ryanzheng/p/9810561.html