Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
169 views

Postgres : pg_restore/pg_dump everything EXCEPT the table id's for a table

Currently I'm doing something like: pg_dump -a -O -t my_table my_db > my_data_to_import.sql What I really want is to be able to import/export just the data without causing conflicts with my ...
2
votes
3answers
753 views

I want to restore the database with a different schema

Dear All , I have taken a dump of a database named temp1 using the follwing command $ pg_dump -i -h localhost -U postgres -F c -b -v -f pub.backup temp1 Now I want to restore the dump in a ...
1
vote
0answers
19 views

postgreSQL dump/restore from 8.4 to 8.1 in a shell script [migrated]

I have to restore a DB table every day from a postgresql 8.4 to 8.1. For the backup, I use this code (windows server): D:\PostgreSQL\8.4\bin\pg_dump -U postgres -p 5433 -t my_table myDB > ...
1
vote
1answer
643 views

pg_dump ignoring table sequence?

I have been playing around with PostgreSQL lately, and am having trouble understanding how to backup and restore a single table. I used pgadmin3 to backup a single table in my database, in order to ...
0
votes
1answer
158 views

Why is pg_restore returning successfully but not actually restoring my database?

I have a Postgres 8.4 database on a linux server that I have dumped using the following command: pg_dump --format=c --exclude-table=log --file=/path/to/output my_db I then ftp the created file to ...