> 
> If I have taken any backup successfully through pg_dump? How can I restore 
> this pg_dump(Sql file) without use of pg_restore.
> 

You can send the file to psql, the command line client:

    psql yourdb < yourbackup.sql

Or:

    cat yourbackup.sql | psql yourdb

Kind regards,
Andomar




-- 
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Reply via email to