To restore a PostgreSQL backup created with pg_dump, the following may be used:

To restore a PostgreSQL backup created with pg_dump, the following may be used:
$ psql -f database_dump.psql database_name
Well Done. Your Answer is Correct Keep it Up!
$ psql -r database_dump.psql database_name
$ psql -R database_dump.psql database_name
$ psql -F database_dump.psql database_name

Leave a Reply

Your email address will not be published. Required fields are marked *