postgresql Azure Postgres的pg_dump失败

jbose2ul  于 2023-08-04  发布在  PostgreSQL
关注(0)|答案(2)|浏览(146)

我有一个Azure Postgres灵活服务器正在运行,需要备份其中的数据库
按照Postgres文档9.1.4中的说明在这里
我精心制作了下面的pg-dump命令。

pg_dump -b -Z0 -F t --host=hidden --username=hidden --dbname=temp --file=backup.tar

字符串
它会运行几个小时,然后失败,输出如下

pg_dump: error: error reading large object 350828: server closed the connection unexpectedly
        This probably means the server terminated abnormally
        before or while processing the request.
server closed the connection unexpectedly
        This probably means the server terminated abnormally
        before or while processing the request.


任何帮助弄清楚这一点将不胜感激

ne5o7dgx

ne5o7dgx1#

我也使用Azure Pg服务。尝试使用此命令:

psql.exe -h 127.0.0.1 -U user -d database

字符串
这从我这边起作用。

wvt8vs2t

wvt8vs2t2#

Laurenz关于“记忆”的评论帮助了我。临时增加内存并运行命令会有所帮助。


的数据

相关问题