I have my dump file of DB Dump via psql, I want to import it to my windows Postgres via PSQL from a certain location. However when I try the following:
postgres-# psql cds < C:\Users\user\Desktop\cds_db.bak
I get the following error:
Invalid command \Users. Try \? for help.
I also tried the following:
postgres-# psql cds < cds_db.bak
But it was quiet, nothing happened.
The file is located on my desktop, how can I import the file?