PostgreSQL 恢复转储不运行
我正在尝试从 .sql 文件将数据添加到新创建的数据库,但它在我的机器(mac)上不起作用,但适用于其他机器。 所以首先我为它创建了数据库和角色,然后我尝试通过终端恢复它:
psql -U username -d dbname < filename.sql
终端中没有任何反应,它甚至没有给出错误,只是给出了下一个/新行。 我尝试使用 PGAdmin 或 Dbeaver 进行恢复,但这些不支持转储恢复,所以我还尝试安装 jetbrains DataGrip,当我尝试从那里恢复文件时,日志给出的结果
psql process finished
该过程在大约 3 秒内结束,但它没有填充DB 与任何东西。我已多次尝试重新启动 psql 、删除 dband recreate 并执行相同的步骤,但没有结果。
I am trying to add data to newly created DB from .sql file but it doesnt work on my machine(mac) and works for others.
So first i created DB and role for it and then i tried restore it via terminal with this:
psql -U username -d dbname < filename.sql
Nothing happens in terminal , it doesnt even give error it just gives next/new line.
I tried to do with PGAdmin or Dbeaver to restore but these dont support dump restoring, so i also tried to install jetbrains DataGrip and when i try restore file from there the logs give result of
psql process finished
The process ends in like 3 seconds but it doesnt fill the DB with anything. I have tried multiple times to restart psql , delete dband recreate and do the same steps but no result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找不到合适的解决方案,所以我删除了数据库并在本地重新安装了 postgres (v14) 并使用了相同的脚本。现在好了。
I couldnt find a decent solution, so i deleted DB and reinstalled postgres (v14) on local and used same script. Now its fine.