如何创建postgres数据库模式的sql脚本?

发布于 2024-12-10 05:52:57 字数 128 浏览 0 评论 0原文

我想要 postgres 9 数据库模式的 sql 脚本,该脚本不在本地服务器上。我在 pgAdmin 的 sql 编辑器上尝试了 pg_dump 命令,但它在那里不起作用。我不确定在哪里运行该命令。请帮助我做同样的事情...... 谢谢..

I want sql script of postgres 9 database schema which is not on local server. I tried pg_dump command on sql editor of pgAdmin and its not working there. I m not sure where to run that command. Please assist me with the same....
Thanks..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

趁微风不噪 2024-12-17 05:52:57

pg_dump 是一个命令行实用程序;它不是 SQL,因此它无法在 pgAdmin 或执行 SQL 的其他任何地方工作。

pgAdmin 但是确实有一个功能可以做你想做的事:

  1. 右键单击要导出的数据库
  2. 从弹出菜单中选择备份
  3. 选择“格式”纯文本
  4. 选择“纯文本选项”仅架构

pg_dump is a command line utility; it isn't SQL, so it won't work in pgAdmin or anywhere else that executes SQL.

pgAdmin however does have a facility to do what you want:

  1. Right-click on the database you want to export
  2. Select Backup from the pop-up menu
  3. Chose "format" Plain
  4. Chose "plain option" Only schema
甜味超标? 2024-12-17 05:52:57

您还可以使用 pgAdmin 工具生成或获取纯文本数据库备份。
您只能为数据或架构生成纯文本备份。

我分享了一些屏幕截图,请访问此博客了解更多详细信息。

You can also use pgAdmin tool to generate or take plain text Database Backup.
You can generate plain text backup for data or schema only.

I have shared few screen shots, please visit this blog for more details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文