English 中文(简体)
为特定表格和条目创建数据库
原标题:Creating a database dump for specific tables and entries Postgres
  • 时间:2011-09-09 09:47:53
  •  标签:
  • postgresql

我有一个数据库,有数百张表格,我需要做的是出口特定的表格,并插入数据表,以备一个目录。

我所知道的唯一能做到这一点的说法是

pg_dump -D -a -t zones_seq interway > /tmp/zones_seq.sql

如果我每张桌上都有这一说法,或者能够用类似的话把所有选定的表格出口到一个大片面。 上面的pg_dump并不仅仅出口表的表象。

Any help will be appreciated.

最佳回答
问题回答

If those specific tables match a particular pattern, you can use that with the -t option in pg_dump.

pg_dump -D -a -t zones_seq -t interway -t "<pattern>" -f /tmp/zones_seq.sql <DBNAME>

例如,从“测试”开始的倾销表可以使用

pg_dump -D -a -t zones_seq -t interway -t "^test*" -f /tmp/zones_seq.sql <DBNAME>




相关问题
摘录数据

我如何将Excel板的数据输入我的Django应用? I m将PosgreSQL数据库作为数据库。

Postgres dump of only parts of tables for a dev snapshot

On production our database is a few hundred gigabytes in size. For development and testing, we need to create snapshots of this database that are functionally equivalent, but which are only 10 or 20 ...

How to join attributes in sql select statement?

I want to join few attributes in select statement as one for example select id, (name + + surname + + age) as info from users this doesn t work, how to do it? I m using postgreSQL.

What text encoding to use?

I need to setup my PostgreSQL DB s text encoding to handle non-American English characters that you d find showing up in languages such as German, Spanish, and French. What character encoding should ...

SQL LIKE condition to check for integer?

I am using a set of SQL LIKE conditions to go through the alphabet and list all items beginning with the appropriate letter, e.g. to get all books where the title starts with the letter "A": SELECT * ...