Answers for "pg_dump a table"

SQL
3

postgresql pg_dump

pg_dump -U user -d db_name -h 127.0.0.1 > dump.sql
Posted by: Guest on June-11-2020
0

pg_dump export single table

pg_dump --host localhost --port 5432 --username postgres --format plain --verbose --file "<abstract_file_path>" --table public.tablename dbname
Posted by: Guest on September-11-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language