From: | Michael Fuhr <mike(at)fuhr(dot)org> |
---|---|
To: | kmohan <krishnamohan(at)dsmsoft(dot)com>, pgsql-general(at)postgresql(dot)org |
Subject: | Re: Export to shape file |
Date: | 2007-01-14 16:55:43 |
Message-ID: | 20070114165543.GA4520@winnie.fuhr.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
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/interactive/client-authentication.html
http://www.postgresql.org/docs/8.2/interactive/libpq.html
--
Michael Fuhr
From | Date | Subject | |
---|---|---|---|
Next Message | Guy Rouillier | 2007-01-14 18:13:06 | substr negative indexes |
Previous Message | Michael Fuhr | 2007-01-14 16:27:21 | Re: Remove diacritical marks in SQL |