Import SQL dump into PostgreSQL database

psql databasename < data_base_dump

That’s the command you are looking for.

Beware: databasename must be created before importing.
Have a look at the PostgreSQL Docs Chapter 23. Backup and Restore.

Leave a Comment