I am using phpPgAdmin in the browser and PgAdmin III for Windows. Is there anyway to take the printout of the table structure for the entire database?

link|improve this question

56% accept rate
feedback

1 Answer

The standard way of exporting database schema is

pg_dump --schema-only MYDBNAME > output-file.sql

The very same effect can be achieved in PgAdmin III:

  • right click the database in object browser, select "Backup"
  • select destination filename (common extension is .sql or .txt)
  • Choose "Plain" format. (that is, text format)
  • on "Dump Options #1" tab, tick "Only Schema"
  • click "Backup"

Note: the resulting file, in both cases, will have not only tables but also all other objects (views, functions, etc etc). If you need only the minimal printout, you can edit this file in text editor and remove unneeded stuff. Leave only "Type: TABLE;" items.

link|improve this answer
That should be pg_dump not psql – a_horse_with_no_name Dec 28 '11 at 9:59
thx @a-horse-with-no-name, corrected – filiprem Dec 28 '11 at 10:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.