Latest News

Dump PostgreSQL without Owner & Privileges

  • Ivan Ivanov
  • PostgreSQL
Dump PostgreSQL without Owner & Privileges

If you ever wanted to dump your PostgreSQL Development Database without the Owner and the Privileges, then you just need to run the following command:


pg_dump database_name -O -x > output_file
16 seconds