- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有等同于pg_restore
的SQL 命令?虽然我可以在 Python 上使用 psycopg2
连接到 PostgreSQL 数据库(在 AWS RDS 上),但没有安装任何二进制包(如 pg_restore
)的权限。如何在没有 pg_restore
的情况下恢复使用 pg_dump
生成的转储?
最佳答案
来自pg_restore手册页:
pg_restore can operate in two modes. If a database name is specified, pg_restore connects to that database and restores archive contents directly into the database. Otherwise, a script containing the SQL commands necessary to rebuild the database is created and written to a file or standard output.
因此,您可以使用 pg_restore 创建一系列 SQL 命令,然后您可以将这些命令加载到您的数据库中。
AWS documentation意味着您可以使用 psql 加载该 SQL 文件。
请注意,同一页面提供了使用 pg_dump 创建转储的详细说明它已经是 SQL 形式。如果你这样做,那么你根本不需要使用 pg_restore。
关于postgresql - 等同于 pg_restore 的 SQL 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21692373/
判断这2个相似的Uris实际上相同的标准方法是什么? var a = new Uri("http://sample.com/sample/"); var b = new Uri("http://sam
这个问题在这里已经有了答案: Why does "true" == true show false in JavaScript? (5 个答案) 关闭 5 年前。 可能我很困惑,但我无法理解这个愚蠢
我是一名优秀的程序员,十分优秀!