Answers for "how to work on postgresql remote access"

2

how to access remote pstgres

psql -U postgres DATABASE_NAME < backup.sql
Posted by: Guest on August-11-2020
1

how to access remote pstgres

pg_dump -U postgres DATABASE_NAME > backup.sql
Posted by: Guest on August-11-2020
0

how to connect to a remote postgresql database

$ psql -h <host> -p <port> -U <username> <database>
Posted by: Guest on July-19-2021

Code answers related to "how to work on postgresql remote access"

Browse Popular Code Answers by Language