I want to copy one table's content from a remote machine to local. I have tried with psql Command \copy. It's working fine as "copy" is not working due to copying from remote.
But is there any way I can do the same without the command console, and execute a simple query through c# and do it programatically? I am using Postgres 9.4
pg_dump,pg_restoreonpgAdmin? – Luan Huynh Dec 12 '16 at 10:08tablewith your columnscreate table t1 as select col1, col2 ... from table_a, then dump/restoret1. (dump + zip) – Luan Huynh Dec 14 '16 at 14:41selectcolumns you need. – Luan Huynh Dec 14 '16 at 15:02