Changes between Version 76 and Version 77 of InstallationGuidelines/PostgreSQL
- Timestamp:
- 10/02/17 16:18:49 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/PostgreSQL
v76 v77 264 264 }}} 265 265 266 If wanting to be specific about which tables to restore, you can use: 267 {{{ 268 pg_restore -t table | psql 269 }}} 270 271 If you want to exclude a table, there is no equivalent argument, so you can sue the following procedure: 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 276 }}} 266 277 == Remote Access == 267 278 Say that you want to provide access for an external reporting tool.