Re: [GENERAL] Possible to dump/load a database from within psql?

2016-01-25 Thread Joshua D. Drake
On 01/25/2016 02:16 AM, Brian Cardarella wrote: Is it possible, and if so how, to dump and then load a database to/from a file from within a psql connection? pg_dump -h $host -U $user $database|psql -U $user -h $host $database http://www.postgresql.org/docs/9.5/static/app-pgdump.html

[GENERAL] Possible to dump/load a database from within psql?

2016-01-25 Thread Brian Cardarella
Is it possible, and if so how, to dump and then load a database to/from a file from within a psql connection? -- Brian Cardarella CEO of DockYard Visit us: http://dockyard.com Call us: (855) DOCK-YRD Follow me on Twitter: http://twitter.com/bcardarella Follow us on Twitter:

Re: [GENERAL] Possible to dump/load a database from within psql?

2016-01-25 Thread Raymond O'Donnell
On 25/01/2016 10:16, Brian Cardarella wrote: > Is it possible, and if so how, to dump and then load a database to/from > a file from within a psql connection? You can use the COPY command to do a table at a time, but you'll get just the data - you won't get permissions etc. Ray. -- Raymond