Changes between Version 77 and Version 78 of InstallationGuidelines/PostgreSQL
- Timestamp:
- 10/02/17 16:27:16 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/PostgreSQL
v77 v78 271 271 If you want to exclude a table, there is no equivalent argument, so you can sue the following procedure: 272 272 {{{ 273 pg_restore -l $pgdump_file > restore.pgdump.list 274 # Open that restore.pgdump.list file in an editor, and insert an ; in front of the lines to not import 275 pg_restore -L restore.pgdump.list | psql 273 pg_restore -l $pgdump_file | grep -v "TABLE DATA public table_to_exclude" > restore.pgdump.list 276 274 }}} 277 275 == Remote Access ==