Answers for "local pg_sql to heroku pg_sql"

SQL
0

local pg_sql to heroku pg_sql

# set the password in an environment variable
export PGPASSWORD=mypassword # linux/mac
set PGPASSWORD=mypassword # windows
# create the database dump
$ pg_dump -Fc --no-acl --no-owner -h localhost -U myuser mydb > mydb.dump
Posted by: Guest on October-22-2021

Code answers related to "local pg_sql to heroku pg_sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language