Changes between Initial Version and Version 1 of UsersWikiExamplesPgsql2Shp


Ignore:
Timestamp:
Apr 13, 2009, 2:15:22 PM (15 years ago)
Author:
pierre
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiExamplesPgsql2Shp

    v1 v1  
     1
     2= pgsql2shp Examples =
     3
     4
     5== Database on different machine, authentication required ==
     6
     7{{{
     8pgsql2shp -f myshp -h myserver -u apguser -P mypassword -g mygeomfield mydatabase mytable
     9
     10}}}
     11
     12== Database on same machine, trusted user, no need for host ==
     13
     14{{{
     15pgsql2shp -f myshp mydatabase mytable
     16
     17}}}
     18
     19== Using an sql statement instead of table ==
     20
     21{{{
     22pgsql2shp -f myshp -h myserver -u apguser -P mypassword -g mygeomfield mydatabase "select parcel_id, the_geom from parcels where neighborhood='DORCHESTER'"
     23
     24}}}
     25
     26
     27Where myshp is the shapefile name without the .shp extension