I use EMS SQL Manager for PostgreSQL and I need to dump difficult database(domains, 300+ stored procedures/functions, triggers, data, etc).
This tool cannot do it.
Please advice me good GUI tool for postgres.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can always just use the command line utility.
Dump the cluster:
Dump a single database:
Dump the schema only:
More in the manual.
If you want to restore to an empty database, you might want to run before restoring:
The
--cleanoption forpg_dumpis not needed in this case.