I opened an SQL Shell (psql) and entered my information: username, port, host, database and password.
Then the name of the database popped up like so
Testing_Database-#
Then I attempted to dump a table into a file like so
pg_dump -h BigSever -p 5432 -t customer_order > plzwork.sql
Nothing showed up on my machine. I quickly got back
Testing_Database-#
I searched my entire computer for it then I read online to try
pg_dump -h BigSever -p 5432 -t customer_order > C:\plzwork.sql
It didn't work either. It threw an error, so I tried another example
pg_dump -h BigSever -p 5432 -t customer_order > "C:\\plzwork.sql"
and got
Testing_Database-#
But still, it wasn't in the C drive as expected. So, I am now wondering am I supposed to get a notification of completion? If it is working, why isn't it sending it where I can find it.
Also, I tried my own personal localhost to do a dump and got the same results.