将包含数据库转储的转储文件导入到 dbeaver
Import dump file containing a database dump to dbeaver
我在这个db_2022.dump
二进制文件中有一个数据库转储,我正试图将其导入到 dbeaver,但我还没有找到导入数据库的方法,所以我可以看到它。
我在 dbeaver 论坛中找到了以下内容,但是当我尝试按照说明创建新连接时,我没有看到任何可以 select 打开此文档的选项。
https://dbeaver.io/forum/viewtopic.php?f=2&t=895
Edit: The database and version is PostgreSQL 12
. I'm not trying to
dump it to an existing db rather I want to create a new one with this
dump.
the dump command looks like this: pg_dump -h blah.amazonaws.com -Fc -v --dbname="blah2" -f "/tmp/dump/20220203.dump".
And it will be the same version PostgreSQL 12
完全不使用 DBeaver 的最简单方法。
做:
--In psql
CREATE new_db;
--Exit psql
--At command line
pg_restore -d new_db -h <the_host> -p <the_port> -U postgres /tmp/dump/20220203.dump
要直接在 Dbeaver 中工作,请参阅 Backup/Restore。
我在这个db_2022.dump
二进制文件中有一个数据库转储,我正试图将其导入到 dbeaver,但我还没有找到导入数据库的方法,所以我可以看到它。
我在 dbeaver 论坛中找到了以下内容,但是当我尝试按照说明创建新连接时,我没有看到任何可以 select 打开此文档的选项。
https://dbeaver.io/forum/viewtopic.php?f=2&t=895
Edit: The database and version is PostgreSQL 12 . I'm not trying to dump it to an existing db rather I want to create a new one with this dump. the dump command looks like this: pg_dump -h blah.amazonaws.com -Fc -v --dbname="blah2" -f "/tmp/dump/20220203.dump". And it will be the same version PostgreSQL 12
完全不使用 DBeaver 的最简单方法。
做:
--In psql
CREATE new_db;
--Exit psql
--At command line
pg_restore -d new_db -h <the_host> -p <the_port> -U postgres /tmp/dump/20220203.dump
要直接在 Dbeaver 中工作,请参阅 Backup/Restore。