pg_restore/pg_dump: add page
This commit is contained in:
19
pages/common/pg_dump.md
Normal file
19
pages/common/pg_dump.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# pg_dump
|
||||
|
||||
> Extract a PostgreSQL database into a script file or other archive file
|
||||
|
||||
- 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}}`
|
Reference in New Issue
Block a user