Tagged Questions
0
votes
0answers
17 views
Backup daily for MySQL, MariaDB or PostgreSQL [migrated]
Good day:
I wonder if there is a program with which I can create daily backups with these requirements:
The first time, make a full backup.
The second time, only the changes since the last backup, ...
0
votes
0answers
60 views
PostgreSQL full backups script not working
I'd like to use backup script that is provided in (my scripts are the same as in given link, only configuration changed):
http://wiki.postgresql.org/wiki/Automated_Backup_on_Linux
In ...
0
votes
2answers
126 views
create backup files with date
I'm doing a dump like this pg_dump prod-db -U postgres > prod-db.sql, but would be cool if I could do a dump like pg_dump prod-db -U postgres > prod-db-{date}.sql and be able to generate a file ...
0
votes
1answer
80 views
back up a postgres db and restore on another computer [closed]
I've just purchased a new computer (mac OSX) and I want to continue developing using the same database I had on the old computer. I don't want it remotely done cause I dont want to keep the other ...
0
votes
1answer
2k views
Howto pg_restore
I am dumping my database 'mydatabase' into a text file 'mydatabase.sql' through command line.
"C:/Program Files (x86)/PostgreSQL/9.1/bin/pg_dump.exe " --host localhost --port 5432 --username ...
0
votes
1answer
117 views
Trying to have postgres database backup by backup rubygem nad ruby on rails
My my_backup.rb=>
database PostgreSQL do |db|
db.name = "xxxxx"
db.username = "postgres"
db.password = "*********"
db.host ...
-3
votes
1answer
125 views
Convert PgSQL Dump file to DB2 format for import [closed]
I created a PgSQL Dump of a database using:
$ pg_dump dbname > dbname.sql
Now that I have the file how can I convert the format and import it into DB2 v 10.1?
I have created an empty database ...
0
votes
1answer
64 views
How can I download the Schema from a PostgreSQL db hosted on heroku?
I would like to create a ERM-Diagram from a PostgreSQL Database which is hosted on heroku.
The database itself is almost 20 GB big, which makes downloading the whole dump not an option.
Is there a ...
9
votes
4answers
5k views
Postgresql 9.2 pg_dump version mismatch
I am trying to dump a Postgresql database using the pg_dump tool.
$ pg_dump books > books.out
How ever i am getting this error.
pg_dump: server version: 9.2.1; pg_dump version: 9.1.6
pg_dump: ...
1
vote
2answers
512 views
Possible backup corruption using pg_dump only with compress parameter?
I used this command to backup 200GB database (postgres 9.1, win7 x64):
pg_dump -Z 1 db_name > backup
It created 16GB file, which is fine I think because previous backups which works (and were packed ...
0
votes
1answer
974 views
POSTGRESQL 9.1 backup and restore to 8.4
I'm trying to upload a database, which I developed locally, into our development server.
I installed PostgreSQL 9.1 on my machine and the development server uses 8.4.
When trying to restore the ...
0
votes
1answer
145 views
Can someone from Heroku confirm my backup script doesn't violate their terms?
Following on from this earlier question, I've had a look at the Heroku client gem and written a Python script that performs Postgres backups on Heroku in the same way as the pgbackups addon.
Since ...
0
votes
2answers
484 views
backup of postgresql database from my application
I've got application which contains a database based on Postgresql. I wannna get a backup of this database using my application. for ex. I wanna click an option in program menu and wanna get file with ...
0
votes
2answers
80 views
Accessing the image in HTTP server from a seperate image DB server
I have a PostgreSql db that has several OID fields. The data to these fields has been inserted using the lo_import command.
But I am not able to backup the database and restore it in another server. ...
0
votes
1answer
871 views
Django using dumpdata to create database backups
I have a production server running, and a local development one (this one uses the simple runserver, etc.).
I was planning on using Django's built in "dumpdata" command in order to create backups of ...
1
vote
1answer
569 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 ...
3
votes
2answers
122 views
How to build local environment with large databases
I have two storages (PostgreSQL, MongoDB) and as I need to develope application locally on my computer (ideally offline), i need data from those storages to be copied to my HDD.
Anyway those are ...
1
vote
3answers
200 views
Backing up the DB vs. backing up the VM
We're serving a Django/Postgres site running on a VM hypervisor. We're now trying to figure out our back up strategy and have two probable options:
Back up the DB directly using pg_dump
Back up the ...
3
votes
2answers
3k views
How to import a big database from Heroku to local mysql or sqlite3?
As per title I need to import, but PG backups is giving me strict Postgres SQL that doesn't work with MySQL, also with a non-specified encoding that I guess is UTF-16. Using db:pull takes ages and ...
0
votes
2answers
596 views
How to backup some tables with data and some tables only schema PostgreSQL
I want to dump a database.
I have three tables:
table1
table2
table3
From table1 i want the schema plus data.
From table2 and table3 i just want the schema.
How do i do that?
0
votes
2answers
501 views
How can I backup everything in Postgres 8, including indexes?
When I make a backup in postgres 8 it only backs up the schemas and data, but not the indexes. How can i do this?
1
vote
1answer
2k 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 ...
2
votes
2answers
136 views
Backing up a postgresql data dir with python tarfile. What errors to expect / ignore
I am writing a python script for automating the backing up of the PostgreSQL data directory to enable "Continuous Archiving and Point-In-Time Recovery".
I would like to use Pythons tarfile library ...
1
vote
1answer
202 views
Error in postgresql 8.3 restore database
when i try to restore my database ,it shows error
could not create large object 515025
in pgAdmin and command line as well
its not working even if i am creating another backup
any suggestion?
...
2
votes
4answers
395 views
Backing up a DB with Git - a good idea?
The way I see it dumping a PostgeSQL DB into one big SQL file and then committing and pushing to a remote Git repo can be a terrific backup solution: I get a history of all versions, hashing, secure ...
2
votes
2answers
4k views
pg_dump 9.0 to pg_restore 8.3
Is it possible to instruct pg_dump of 9.0 to provide a backward-compatible dump, or force pg_restore of 8.3 to work with that dump?
In other words, what are my options in resolving this error on ...
13
votes
2answers
6k views
Best method for postgres incremental backup
I am currently using pg_dump piped to gzip piped to split. But the problem with this is that alle output files are always changed. So checksum-based backup always copies all data.
Are there any other ...
2
votes
2answers
436 views
postgresql upgrade backup and restore same port
Here, I want to upgrade postgresql from 8.3(port 5432) to 9.0(port 5433)
Whats happen if,
-First I instal the postgres new version 9.0 on port 5433
-Than I backup and restore database by using ...
0
votes
2answers
1k views
How can I use pg_dump to backup postgresql to remote host?
I need backup local server two postgresql databases to remote host, using pg_dump command and not use ssh. local server and remote host are all install postgresql.
how can I do it ?
such as:
...
1
vote
3answers
461 views
What is the advantage of using Continuous Archiving and Point-In-Time Recovery over a SQL Dump?
It seems like Continuous Archiving and Point-In-Time Recovery for Postgresql is much more complicated to backup and restore. What would the advantages be over using the sql dump method? I am not ...
2
votes
1answer
2k views
Export to CSV and Compress with GZIP in postgres
I need to export a big table to csv file and compress it.
I can export it using COPY command from postgres like -
COPY foo_table to '/tmp/foo_table.csv' delimiters',' CSV HEADER;
And then can ...
0
votes
1answer
530 views
Granting privileges to ALL objects in a database - Postgres
I'm trying to backup my database with:
pg_dump my_database > backup.sql
unfortunately there are no privileges set for many objects in the database,
therefore the command does not work!
...
2
votes
3answers
3k views
How to do a backup from a Postgresql-DB via JDBC?
In our application, we've implemented an automatic DB migration triggered from within our code. Now we want to backup the existing DB before doing any migration.
Can anyone explain how to do a full ...
2
votes
1answer
3k 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?
0
votes
2answers
450 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
416 views
Can I just backup postgres's directory while it's running?
I need to back up my database but I don't have enough disk space to dump it. Can I just use duplicity to perform incremental backups on the data directory? Would that corrupt the backup somehow? I ...
1
vote
1answer
496 views
PostgreSQL Error: geometry contains non-closed rings
I am desperately trying to backup using pgAdmin III my database and I receive an error: geometry contains non-closed rings. How can I get around this??
3
votes
2answers
1k views
PostgreSQL and Amazon EBS Snapshots?
I found this article explaining how to run MySQL on Amazon EC2. It talks about using XFS as the filesystem and then leveraging EBS snapshots to create backups of the data. Does anyone know if I can ...
6
votes
2answers
16k views
Restore a postgres backup file using the command line?
I'm new to postgresql, and locally, I use pgadmin3. On the remote server, however, I have no such luxury.
I've already created the backup of the database and copied it over, but, is there a way to ...
2
votes
4answers
582 views
Backup of folder + database - Python
I feel like this is quite delicate,
I have various folders whith projects I would like to backup into a zip/tar file, but would like to avoid backing up files such as pyc files and temporary files.
...
25
votes
8answers
12k views
PostgreSQL: improving pg_dump, pg_restore performance
When I began, I used pg_dump with the default plain format. I was unenlightened.
Research revealed to me time and file size improvements with pg_dump -Fc | gzip -9 -c > dumpfile.gz. I was ...
14
votes
3answers
17k views
Postgres: clear entire database before re-creating / re-populating from bash script
I'm writing a shell script (will become a cronjob) that will:
1: dump my production database
2: import the dump into my development database
Between step 1 and 2, I need to clear the development ...
3
votes
7answers
3k views
Does anyone know of a good way to back up postgres databases?
I have a script that will produce daily rotated backups for mysql, but I can't find anything similar for postgres. I have also discovered that it has an online backup capability, which should come in ...
0
votes
1answer
1k views
postgresql/postgis backup strategy to restore after geos/postgis recompile?
Current situation:
Ubuntu 8.04 server edition (live server)
Postgresql 8.3.7 (from standard repositories)
Postgis 1.3.3 (from standard repositories)
GEOS 2.3.4 (from standard repositories)
...
9
votes
3answers
5k views
PostgreSQL restore and backup solution
A) What is the best solution for regularly backing up large PostgreSQL database (version 8.3 running on latest Ubuntu server); please don't say pg_dump with those painfully slow insert statements
B) ...

