pg_dump
का उपयोग करें इस विकल्प के साथ:
pg_dump -U user_name -h host database -s -t table_or_view_names -f table_or_view_names.sql
विवरण:
-s or --schema-only : Dump only ddl / the object definitions (schema), without data.
-t or --table Dump : Dump only tables (or views or sequences) matching table
उदाहरण:
-- dump each ddl table elon build.
$ pg_dump -U elon -h localhost -s -t spacex -t tesla -t solarcity -t boring > companies.sql
क्षमा करें यदि विषय से बाहर। बस "psql डंप डीडीएल" को गुगल करने में मदद करना चाहते हैं और यह धागा मिला है।