Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用终端在 postgresql 数据库中上传 .sql 或 .xml 文件。我在链接后看到了几个解决方案,但不幸的是它们都不起作用。
举个例子就好了。我正在使用 psql (PostgreSQL) 9.1.5。在 Linux 环境下。提前致谢。可能重复: Link-1,Link-2,Link-3,Link-4
如果 .sql 文件只是带有 SQL 查询的文本,那么正确的方法是:
psql -U some_username -d some_database -f name_of_the_file
.xml 文件是什么 - 我不知道。据我所知,没有原生 PostgreSQL 工具产生数据库的 XML 转储。
如果上述方法不起作用,请向我们展示文件的一部分,您是如何运行它的,以及您得到了什么。