summaryrefslogtreecommitdiff
path: root/tech/psql dump and restore.txt
blob: 92dc15dae42554b5c5c4901364ad3b47f6f0c780 (plain)
1
2
3
4
5
6
7
8
9
10
11
psql back up and restore

Backup:  

    $ pg_dump -U {user-name} -hlocalhost -d {source_db} > {dumpfilename.sql}

Restore: 
    
    $ psql -U {user-name} -hlocalhost -d {desintation_db} < {dumpfilename.sql}