PostgreSQL Restore dari dump
psql -U postgres -h localhost -p 5432 -f data_dump.sql
Jealous Jackal
psql -U postgres -h localhost -p 5432 -f data_dump.sql
pg_dump -U username dbname > dbexport.pgsql
pg_dump -h localhost -U postgres -W -d mydb > mydb.sql
pg_dump -U postgres mydb > mydb.sql
pg_dump --host localhost --port 5432 --username postgres --format plain --verbose --file "<abstract_file_path>" --table public.tablename dbname