PostgreSQL: Difference between revisions
from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
==Links== | ==Links== | ||
* [http://www.postgresql.org/ PostgreSQL] home page | * [http://www.postgresql.org/ PostgreSQL] home page | ||
==Notes== | |||
To backup a database: | |||
* <code>su - postgres -c 'pg_dump {{arg|database name}} ' > {{arg|output_file.sql}} | |||
** Presumably "postgres" is the postgres "superuser"? | |||
Revision as of 12:48, 14 January 2018
Computing: Software: Database Engines: PostgreSQL<hide>
page status::seed
</hide>
|
This page is a seed article. You can help HTYP water it: make a request to expand a given page and/or donate to help give us more writing-hours!
|
Links
- PostgreSQL home page
Notes
To backup a database:
su - postgres -c 'pg_dump <database name> ' > <output_file.sql>- Presumably "postgres" is the postgres "superuser"?
