Thanks for this tutorial. The steps worked for me, but I found that when I tried to restore, I got an out of memory error, because my file was too large. I ended up using raw postgres commands:
export: pg_dump <dbname> -t <tablename> -f out.sql
import: psql <dbname> -f out.sql
Thanks for this tutorial. The steps worked for me, but I found that when I tried to restore, I got an out of memory error, because my file was too large. I ended up using raw postgres commands:
export: pg_dump <dbname> -t <tablename> -f out.sql
import: psql <dbname> -f out.sql