Answers for "backup and restore postgres database linux command line"

0

restore backup "text" postgresql command line

-- My solution was using DBeaver without using commands

psql -U username -d dbname < filename.sql

-- For Postgres versions 9.0 or earlier
psql -U username -d dbname -1 -f filename.sql
Posted by: Guest on December-02-2021

Code answers related to "backup and restore postgres database linux command line"

Browse Popular Code Answers by Language