Postgres DB Dump Carries Owner Information With It
I am setting up a system of DB backup for a web project. At the moment, the DB is being backed up via Bash script like this #!/bin/bash # Set the DB configuration export PGHOST=localhost export PGPORT=5432 #export PGDATABASE=yoga #export PGUSER=delme export PGDATABASE=projectA export PGUSER=userA export PGPASSWORD=blah-blah # Backs up mydatabase to a file and… Read More Postgres DB Dump Carries Owner Information With It