Skip to content

Instantly share code, notes, and snippets.

@dakoctba
Last active August 29, 2015 14:07
Show Gist options
  • Save dakoctba/2a4ffe9ab0db3d42f25b to your computer and use it in GitHub Desktop.
Save dakoctba/2a4ffe9ab0db3d42f25b to your computer and use it in GitHub Desktop.
Fazendo backup com PostgreSQL

##Backup

$ pg_dump banco > arquivo.sql

###Backup de apenas uma tabela

$ pg_dump banco -t tabela > arquivo.sql

##Restore

$ psql -e banco < arquivo.sql

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment