PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Genera DDL a livello di codice su Postgresql

Usa pg_dump con queste opzioni:

pg_dump -U user_name -h host database -s -t table_or_view_names -f table_or_view_names.sql

Descrizione:

-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

Esempi:

-- dump each ddl table elon build.
$ pg_dump -U elon -h localhost -s -t spacex -t tesla -t solarcity -t boring > companies.sql

Scusate se fuori tema. Voglio solo aiutare chi ha cercato su Google "psql dump ddl" e ha ottenuto questo thread.