1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 06:57:55 +01:00
tldr/pages/common/pg_dump.md

20 lines
486 B
Markdown
Raw Normal View History

2016-01-07 07:45:17 +01:00
# pg_dump
2016-01-13 12:04:46 +01:00
> Extract a PostgreSQL database into a script file or other archive file.
2016-01-07 07:45:17 +01:00
- Dump database into a SQL-script file:
`pg_dump {{db_name}} > {{output_file.sql}}`
- Same as above, customize username:
`pg_dump -U {{username}} {{db_name}} > {{output_file.sql}}`
- Same as above, customize host and port:
`pg_dump -h {{host}} -p {{port}} {{db_name}} > {{output_file.sql}}`
- Dump a database into a custom-format archive file:
`pg_dump -Fc {{db_name}} > {{output_file.dump}}`