如何使用psql从gzip文件恢复postgres db? (arelle:XBRL SEC DB)

时间:2016-09-16 15:18:19

标签: postgresql ubuntu-16.04

我从arelle.org下载了xbrldb_SEC_pg_2014-11-02.pg.gzip postgres pg_dump文件。然后我在pgAdminIII中运行了架构ddl文件,它重新创建了所有数据库,函数等。

当我尝试使用以下内容恢复数据库时:

desktop:~/Downloads$ sudo postgres zcat xbrldb_SEC_pg_2014-11-02.pg.gzip | psql -U postgres public

我明白了:

sudo: postgres: command not found psql: FATAL: Peer authentication failed for user "postgres"

我可以将文件zcat转换为文件来扩展它。看起来它是一个pg_dump文件。

postgres=> pg_restore -a /home/jeremy/Downloads/xbrldb_SEC_pg_2014-11-02.txt
postgres-> ;
ERROR:  syntax error at or near "pg_restore"
LINE 1: pg_restore -a /home/jeremy/Downloads/xbrldb_SEC_pg_2014-11-0...
    ^
postgres=> pg_restore -a postgres /home/jeremy/Downloads/xbrldb_SEC_pg_2014-11-02.txt;
ERROR:  syntax error at or near "pg_restore"
LINE 1: pg_restore -a postgres /home/jeremy/Downloads/xbrldb_SEC_pg_...

然后我尝试使用PG Admin III和我的输出:

/usr/bin/pg_restore --host localhost --port 5432 --username "postgres" --dbname "public" --role "postgres" --no-password  --section data --data-only --exit-on-error --table accession --schema public --verbose "/home/jeremy/Downloads/xbrldb_SEC_pg_2014-11-02.backup"
pg_restore: [archiver] input file appears to be a text format dump. Please use psql.

处理返回退出代码1。

请问我需要做些什么来恢复数据库?

有谁知道我需要做些什么才能让数据库从2014-11-02更新到当前日期?

1 个答案:

答案 0 :(得分:5)

您应该将psql作为 postgres 用户运行,而不是zcat,因此请尝试使用以下内容:

zcat xbrldb_SEC_pg_2014-11-02.pg.gzip | sudo -u postgres psql public

PS pg_restore是一个实用程序,而不是PostgreSQL命令,这意味着您应该从命令行运行它,而不是从psql运行它。