Export Postgresql table data using pgAdmin

后端 未结 3 1548
余生分开走
余生分开走 2020-12-22 21:07

I am using pgAdmin version 1.14.3. PostgreSQL database version is 9.1.

I got all Db script for table creation but unable to export all data inside tables. Could not

相关标签:
3条回答
  • 2020-12-22 21:12

    Just right click on a table and select "backup". The popup will show various options, including "Format", select "plain" and you get plain SQL.

    pgAdmin is just using pg_dump to create the dump, also when you want plain SQL.

    It uses something like this:

    pg_dump --user user --password --format=plain --table=tablename --inserts --attribute-inserts etc.

    0 讨论(0)
  • 2020-12-22 21:15
    1. Right-click on your table and pick option Backup..
    2. On File Options, set Filepath/Filename and pick PLAIN for Format
    3. Ignore Dump Options #1 tab
    4. In Dump Options #2 tab, check USE INSERT COMMANDS
    5. In Dump Options #2 tab, check Use Column Inserts if you want column names in your inserts.
    6. Hit Backup button
    0 讨论(0)
  • 2020-12-22 21:30

    In the pgAdmin4, Right click on table select backup like this

    After that into the backup dialog there is Dump options tab into that there is section queries you can select Use Insert Commands which include all insert queries as well in the backup.

    0 讨论(0)
提交回复
热议问题