Changes between Version 76 and Version 77 of InstallationGuidelines/PostgreSQL


Ignore:
Timestamp:
10/02/17 16:18:49 (8 years ago)
Author:
Fran Boon
Comment:

pg_restore specific tables

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/PostgreSQL

    v76 v77  
    264264}}}
    265265
     266If wanting to be specific about which tables to restore, you can use:
     267{{{
     268pg_restore -t table | psql
     269}}}
     270
     271If you want to exclude a table, there is no equivalent argument, so you can sue the following procedure:
     272{{{
     273pg_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
     275pg_restore -L restore.pgdump.list | psql
     276}}}
    266277== Remote Access ==
    267278Say that you want to provide access for an external reporting tool.