summaryrefslogtreecommitdiff
path: root/psql notes.txt
blob: 28ef2df460d47f899acadeb92e66d1a019330951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
psql notes

Backup:  

    $ pg_dump -U {user-name} {source_db} -f {dumpfilename.sql}

Restore: 
    
    $ psql -U {user-name} -d {desintation_db}-f {dumpfilename.sql}
    
Postgres 8.4/geodjango setup on centos:

<http://invisibleroads.com/tutorials/postgresql-postgis-install.html>