by APerfect10 » Thu Feb 28, 2008 7:40 pm
Sorry, re-reading your OP you do say 'existing'. The word dump took me in another direction. A dump/restore is meant to backup an entire database and restore the entire database. You can't restore into an existing database (to my knowledge) using a dump file.
If you wanted to retrieve data that could be inserted into an existing database you would need to use the [url=http://www.postgresql.org/docs/8.3/interactive/sql-copy.htmllw3]COPY command[/urllw3]. You would COPY from a table to a file then COPY from the file into the new database's table.
Best regards,
Derek