This is a discussion on Re: Export to shape file within the Pgsql General forums, part of the PostgreSQL category; --> On Tue, Jan 09, 2007 at 10:39:05PM -0800, kmohan wrote: > > Hi, > > I am trying to ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| On Tue, Jan 09, 2007 at 10:39:05PM -0800, kmohan wrote: > > Hi, > > I am trying to export my spatial data from postgres to shae using pgsql2shp > command. > When i keyed in the syntax pgsql2shp -f pl dcmms plss > It is showing fe_sendauth: no password supplied > Please can some one help me on how to import it to shape file. I can't find any docs on that program quickly, but it's evidently looking for a password. You could: - Find a way to give it the password or - Setup your system so it does not need a password. Have a nice day, -- Martijn van Oosterhout <kleptog@svana.org> http://svana.org/kleptog/ > From each according to his ability. To each according to his ability to litigate. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFFpV4SIB7bNG8LQkwRAuNNAJ9Ykuw1tQ2976UYfiQHGw 6yn6N9JACfbEbc 451p8nUZ/3wScYcxKi5Bcc4= =meUB -----END PGP SIGNATURE----- |
| ||||
| On Wed, Jan 10, 2007 at 10:43:46PM +0100, Martijn van Oosterhout wrote: > On Tue, Jan 09, 2007 at 10:39:05PM -0800, kmohan wrote: > > I am trying to export my spatial data from postgres to shae using pgsql2shp > > command. > > When i keyed in the syntax pgsql2shp -f pl dcmms plss > > It is showing fe_sendauth: no password supplied > > Please can some one help me on how to import it to shape file. > > I can't find any docs on that program quickly, but it's evidently > looking for a password. You could: pgsql2shp is part of PostGIS. Running pgsql2shp with no arguments gives a help message; see also "Using the Dumper" in the PostGIS documentation. http://postgis.refractions.net/docs/ch04.html > - Find a way to give it the password or You can use the -P option for this, although providing a password on the command line has security implications and should usually be avoided. pgsql2shp -P yourpassword -f pl dcmms plss > - Setup your system so it does not need a password. See the "Client Authentication" and "libpq - C Library" chapters in the PostgreSQL documentation to learn more about authentication (adjust the following links for whatever version of PostgreSQL you're running). http://www.postgresql.org/docs/8.2/i...ntication.html http://www.postgresql.org/docs/8.2/i...ive/libpq.html -- Michael Fuhr ---------------------------(end of broadcast)--------------------------- TIP 2: Don't 'kill -9' the postmaster |