Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
173 views

Comparing two postgres dump files

How to compare postgres dump files? I have two dump files, dump1 and dump2 . And I want to compare these two dump files. Any help will be appreciated.. Thank you
3
votes
1answer
187 views

Restoring Postgresql database

Do I always have to delete and then create a database to restore it from a pg_dump file? If I don't delete the database, the data being restore is added to the current data in the DB even if some ...
2
votes
3answers
90 views

How to find the PostgreSQL installation folder via Java without user interaction?

In my Java application I want to implement the option to dump/restore a PostgreSQL database. Some google research showed me that calling pg_dump/pg_restore via Java's ProcessBuilder is probably the ...
2
votes
1answer
157 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
701 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 ...
2
votes
2answers
141 views

Doing pg_dump while still many active transaction

As subjects, what will happen to the backup file meanwhile there is still many active transaction to our database. Does it export realtime or just partially backups ? thanks in advance for any ...
2
votes
1answer
245 views

pg_dump: Error message from server: ERROR: cache lookup failed for type 19

i use the slony for replication of postgresql database. it work fine some day. After i use the slony command to delete the replication node, pg_dump does not work, the error message is: pg_dump: ...
2
votes
3answers
2k views

Problems with $libdir on PostgreSQL

In short, my question is "why doesn't $libdir work on my PSQL installation." CREATE FUNCTION st_box2d_in(cstring) RETURNS box2d AS '$libdir/liblwgeom', 'BOX2DFLOAT4_in' LANGUAGE c IMMUTABLE ...
1
vote
1answer
71 views

pg_dump redirect error messages

I'm writing a cron job to backup a database using pg_dump. I'm looking for a way of redirecting error messages so I can email a backup log file at the end of the process. Is this possible? I can't see ...
1
vote
1answer
48 views

Taking dump of the database without getting specific table records :Postgres

Can any one tell me , How can i take database dump using pg_dump without getting specific table records.
1
vote
3answers
155 views

pg_dump individual tables — possible to do in a loop?

I have been tasked with creating pg_dump files for a db on which there are over 50 tables. I know how to do this manually via the psql command line, but I believe there must be a faster way than doing ...
1
vote
1answer
66 views

Is a pg_dump DB dump 'at-that-time' dump?

I know PostgresQL pg_dump guarantees consistency even if DB is modified while dump is going on, but I want to know if the final dump contains any data modified/inserted after the dump started. To ...
1
vote
1answer
128 views

empty output when calling pg_dump under php code

I need to make a dump via pg_dump in php so i've got a function like this: function fnDump() { exec("/usr/local/bin/sudo -u pg_user /usr/local/bin/pg_dump mon_alarm > ...
1
vote
1answer
584 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 ...
1
vote
1answer
275 views

How to create a backup of a single table in a postgres database?

Is there a way to create a backup of a single table within a database using postgres? And how? Does this also work with the pg_dump command?
1
vote
1answer
379 views

How to use a command line parameter to supply input in subsequent prompt (batch file)

I am using batch file to run certain operation in my application. The command I am using does not take password as a parameter instead it prompts for it while running. This is coming in the way of ...
1
vote
2answers
288 views

Sorting postgresql database dump (pg_dump)

I am creating to pg_dumps, DUMP1 and DUMP2. DUMP1 and DUMP2 are exactly the same, except DUMP2 was dumped in REVERSE order of DUMP1. Is there anyway that I can sort the two DUMPS so that the two ...
1
vote
2answers
189 views

Force postgres dump to use copy rather than INSERTS

While restoring some database backups I noticed that pg_dump is actually using INSERTS rather than COPY. I am not even specifying -d flag but it's still using INSERTS for every database / table I try ...
1
vote
1answer
552 views

Can I selectively create a backup of Postgres database, with only certian tables?

Can I programatically(or whichever way works fine) create the backup of a database, with only the tables I want? I have around 100 tables in my database and I want only 10 tables backup(ofcourse all ...
1
vote
4answers
115 views

How do I check that I removed required data only?

I have a really big database (running on PostgreSQL) containing a lot of tables with sophisticated relations between them (foreign keys, on delete cascade and so on). I need remove some data from a ...
0
votes
0answers
25 views

finding the biggest record - postgresql

I want to use pg_dump with split command. But I don't want to split with --byte=SIZE option. I want to use it with --line-bytes=SIZE. How should I find size of the biggest record so lines won't be ...
0
votes
0answers
18 views

Dumping tables and schemas that are accessible to me only?

Is it possible to dump tables and schemas that are accessible to me only in PostgreSQL?
0
votes
1answer
291 views

How to check if postgresql backup was succesful?

We have a postgresql database that is backed up nightly from a cron job with a following command: su postgres -c "pg_dump our_database | gzip > /home/smb/shared/database_backup.bak.gz" recently ...
0
votes
1answer
138 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 ...
0
votes
2answers
219 views

Export only new data since the last PostgreSQL database export

I have a decent sized PostgreSQL database (approx 6GB & growing). A full backup/export of the database is done every few hours via cron & pg_dump. Specifically, can I export only the changes ...
0
votes
2answers
106 views

can we get the postgres db dump using SQLAlchemy?

Is it possible to have the postgres database dump(pg_dump) using SQLAlchemy? i can get the dump using pg_dump but I am doing all other db operations using SQLALchemy and thus want to know if this dump ...
0
votes
2answers
207 views

The most efficient way to move psql databases

What is the most efficient, secure way to pipe the contents of a postgresSQL database into a compressed tarfile, then copy to another machine? This would be used for localhosting development, or ...