PostgreSQL数据导出成Insert语句

导出整库(排除某张表)

pg_dump --dbname=my_db_name --host=my_host_ip_addr --username=my_username --no-password --data-only --exclude-table-data=my_exclude_tables
 --inserts --column-inserts --encoding=UTF8 --disable-dollar-quoting --file=data_only_insert_sql.backup

导出某张表

pg_dump --dbname=my_db_name --host=my_host_ip_addr --username=my_username --no-password --data-only --table=my_tables
 --inserts --column-inserts --encoding=UTF8 --disable-dollar-quoting --file=data_only_insert_sql.backup

你可能感兴趣的:(PostgreSQL,数据库技术)