Quick Tip – Postgres Data Dumping

Hey guys, just a quick tip on something I used recently – how to dump data to CSV from postgres. So, if you want to dump something on the server itself, you can run the following commands: Copy (Select * From foo) To ‘/tmp/test.csv’ With CSV DELIMITER ‘,’; Which will dump out the data into […]

Quick Tip – Postgres Data Dumping Read More »