开发者

How to back up a postgresql database from within psql?

开发者 https://www.devze.com 2023-04-01 13:35 出处:网络
I am within psql and am wondering if there is a way to backup/restore databases from this command shell.I have read of pg_dump, but that fails with \"syntax error at or n开发者_Go百科ear pg_dump\".

I am within psql and am wondering if there is a way to backup/restore databases from this command shell. I have read of pg_dump, but that fails with "syntax error at or n开发者_Go百科ear pg_dump".

Thanks!


You can always run shell command directly from psql session using \! [ command ] syntax, for example:

\! pg_dump -Fc -f D:\postgres.dump -U postgres postgres

Of course it's not so common to execute pg_dump or pg_restore in such way, but it's possible.

Chapter VI. Reference contains list of all SQL commands and applications (both client and server).


pg_dump is a system command, not a command that you can use from within psql. From within psql you might be looking for something more like 'copy'. You can see it documented here:

http://www.postgresql.org/docs/current/static/sql-copy.html

I'm not a Postgresql expert, but I have found the Postgresql online documentation thorough and professional. I recommend browsing through it if you're planning on using Postgresql to a significant degree.

0

精彩评论

暂无评论...
验证码 换一张
取 消