PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Générer du DDL par programmation sur Postgresql

Utilisez pg_dump avec ces options :

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

Descriptif :

-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

Exemples :

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

Désolé si hors sujet. Je veux juste aider qui google "psql dump ddl" et a obtenu ce fil.