如何使用phppgadmin或psql运行.sql文件

时间:2016-10-15 04:05:09

标签: postgresql phppgadmin

在phppgadmin中导入.sql文件时会产生错误

  

"导入错误:无法自动确定文件格式"。

如何导入文件?

在终端显示为

postgres-# \i Documents/sample.sql

Documents/sample.sql: No such file or directory

但该文件存在于特定位置。如何在Postgresql和Phppgadmin中导入.sql文件

2 个答案:

答案 0 :(得分:0)

您可以通过命令行执行此操作:

通过命令行和你的psql登录 只需在终端中运行以下命令

psql 'databasename' < 'database_dump'

只需更换&#39; databasename&#39;与您的数据库和&#39; database_dump&#39;使用您要导入的文件。

答案 1 :(得分:0)

您可以使用以下命令运行文件

  

psql -U postgres -d postgres -a -f ./test.sql

或者如果您必须通过主机

  

psql -h -p 5432 -U postgres -d -a -f ./test2.sql

You can refer this blog https://trueway-blog.com/run-sql-file-with-psql/