Re: pgdump - Mailing list pgsql-admin

From Rajesh Kumar Mallah
Subject Re: pgdump
Date
Msg-id a97c77030612071755g3b0c307fg8921914b6b6f2404@mail.gmail.com
Whole thread Raw
In response to pgdump  (anuradha devi <anura19@yahoo.com>)
List pgsql-admin
On 12/8/06, anuradha devi <anura19@yahoo.com> wrote:
> Hi
> I have a pgdump.sql file and i want to restore it.The postgreSQL database
> server is running and i issue the command psql -U postgres pgdump.sql in the
> command prompt.
> i get the following error.
> C:\Program Files\PostgreSQL\8.2\bin>psql -U postgres pgdump.sql
> psql: could not connect to server: Invalid argument (0x00002726/10022)
>         Is the server running on host "???" and accepting
>         TCP/IP connections on port 5432?

Hi,

This error means the psql client is not able to connect to the server
that (may or maynot) be running in the machine. Make sure that
the server is running. see if the process postmaster is running.

once the server is running the command to restore is
the command to run a sql script file is :

psql -U postgres -f pgdump.sql

(you missed the -f)

Regds
mallah.








> Thanks
> Anuradha
>
>
>  ________________________________
> Everyone is raving about the all-new Yahoo! Mail beta.
>
>

pgsql-admin by date:

Previous
From: anuradha devi
Date:
Subject: pgdump
Next
From: "Rajesh Kumar Mallah"
Date:
Subject: Should clients warn in case of server version mismatch ?