pg_dump -U username databasename -W -s -t tablename -s, --schema-only 只转储模式, 不包括数据 -t, --table=TABLE 只转储指定名称的表
还原: createdb newDBname psql -d newDBname -U postgres -f dump.sql postgres是用户名 newDBname是数据库名 dump.sql是文件名
pg_dump -U username databasename -W -s -t tablename -s, --schema-only 只转储模式, 不包括数据 -t, --table=TABLE 只转储指定名称的表
还原: createdb newDBname psql -d newDBname -U postgres -f dump.sql postgres是用户名 newDBname是数据库名 dump.sql是文件名