We are switching hosts and the old one provided a SQL dump of the PostgreSQL database of our site.
Now, I\'m trying to set this up on a local WAMP server to test thi
I'm not sure if this works for the OP's situation, but I found that running the following command in the interactive console was the most flexible solution for me:
\i 'path/to/file.sql'
Just make sure you're already connected to the correct database. This command executes all of the SQL commands in the specified file.