Tagged Questions
The database-backups tag has no wiki summary.
10
votes
5answers
3k views
Is there any tool to backup/restore Google Datastore entities?
I've playing around with Google App Engine and Google Datastore for a while now and I am facing the need to take regular backups of my stuff up on the cloud.
Is there any sort of general purpose tool ...
7
votes
5answers
345 views
MySQL database backup: performance issues
Folks,
I'm trying to set up a regular backup of a rather large production database (half a gig) that has both InnoDB and MyISAM tables. I've been using mysqldump so far, but I find that it's taking ...
7
votes
4answers
1k views
Is it viable to handle MySQL backups with git?
Today I had this really neat idea for backing up my database: put the dump file in a git repository, then commit on each dump so that I have both the most recent copy, but can easily roll back to any ...
7
votes
1answer
2k views
MongoDB backup plan
I want to switch from MySQL to MongoDB but great data losses (more than 1 hour) are not acceptable for me.
I need to have 3 backup plans:
Hourly backup plan. Data is flushed to disk every X minutes ...
7
votes
4answers
2k views
Is copying /var/lib/mysql a good alterntive to mysqldump?
Since I'm making a full backup of my entire debian system, I was thinking if having a copy of /var/lib/mysql directory is a viable alternative to dumping tables with mysqldump.
are all informations ...
6
votes
4answers
336 views
Why is my database backup script not working in php?
I am using the Database Backup script by David Walsh(http://davidwalsh.name/backup-mysql-database-php) to backup my MYSQL database as a .sql file to my server.
I created a user named backup and gave ...
5
votes
1answer
75 views
Best practice for website database writes during cold backups?
Lets say you have a large, popular database-driven website. There are people on the site all day and all night. They access pages that both read and write to the database.
When implementing a daily ...
4
votes
2answers
341 views
Is there any script that can make full remote backup? [closed]
Possible Duplicate:
Suggestions for backing up php site and mysql db
Is there any php script that can do file system backup and database backup (preferably zip them together) and send the ...
4
votes
8answers
1k views
SQL Azure Backups
Has anyone come up with a good way to do backups of SQL Azure databases?
The two approaches seem to be SSIS or BCP. SSIS looks like it requires a local install of MS SQL 2008 which I don't have. BCP ...
3
votes
4answers
164 views
Problem when backing up Oracle 10g
I've just started a job and have identified an issue in which the database isn't currently being backed up properly so to speak. We are doing one back up every 6 hours that uses the Oracle native ...
3
votes
7answers
354 views
Exporting and importing selected rows in a database
Let's say I have a database like this:
Users
-----
ID int PK Identity
Name vchar(max)
Sales
-----
UserID int FK
Description vchar(max)
And some data:
Users
1, "Daniel"
2, "Barnie"
3, "Frank"
...
3
votes
1answer
3k views
SQL Server 2008 backup best practices
Without not reason, I lose all my data in my database. Fortunately this is was just test data, but this made me to think what will happen if this was done with a production db.
Ultimately, every ...
3
votes
2answers
1k views
Hyper-V snapshot backup strategy appropriate for production SQL server?
So SQL Server 2008 in Hyper-V is a supported configuration, and should perform well as long as you use fixed or pass-through disks and increase your processor/memory settings appropriately. My ...
3
votes
4answers
11k views
Downgrading SQL server 2008 to SQL Server 2005
Are there any issues backing up a database from SQL Server 2008, and then importing it into SQL Server 2005? I had upgraded to SQL Server 2008, but 2008 seems to be too problematic so now I want to ...
2
votes
1answer
64 views
SQL Database backup
Can I take a backup of a database in sql server developer edition?
I am running this code
backup database Test_db to disk = d:\DailyBackUp.
This code is running successfully but the folder ...
2
votes
1answer
63 views
How do I recover production data in App Engine that I accidentally deleted?
I deleted some data from my production App Engine app. Unfortunately I had the wrong table name in mind when I did so because I have two tables that have very similar names. I know the deployed code ...
2
votes
2answers
552 views
How can I exclude data for certain tables but keep structure with mysqldump?
I'm doing a regular dump of a database that uses the database for logging. I need to create a mysqldump command that dumps everything from the database but excludes the row information for the log ...
2
votes
3answers
4k views
How to do automatic mysql db backup using mysql workbench
How to do automatic mysql db backup using mysql workbench?
Is it possible?
2
votes
1answer
365 views
Ideal mysqldump options for backups
I'm creating a backup script for our database servers, and thought I'd ask if there are any preferred options to include with mysqldump. The script will be called from cron every 6-24 hours.
We use ...
2
votes
2answers
901 views
Bash script to scp newest file in a directory on a remote server
Ok so I kinda know how to do this locally with a find then cp command, but don't know how to do the same remotely with scp.
So know this:
scp -vp me@server:/target/location/ /destination/dir/.
...
2
votes
4answers
329 views
How to Exclude Data for Specific Tables
I am using mysqldump to create a canonical installation script for a MySQL database. I would like to dump the data for able half of the tables in the database, but exclude the data from the other ...
2
votes
1answer
815 views
SQL Server Maintenance Wizard Backup Plans
I used the SQL Server Maintenance wizard (along with a book) to generate both Full and Differentail backups. The Full backup runs on Monday morning and the Differentials run Tuesday through Saturday. ...
2
votes
2answers
370 views
Throttling i/o in postgres's pg_dump?
So we have a production database that is 32GB on a machine with 16GB of RAM. Thanks to caching this is usually not a problem at all. But whenever I start a pg_dump of the database, queries from the ...
2
votes
3answers
692 views
Backup a database using JPA (Design)
I have a working code that doesn't work always. Here's my approach:
Creating the backup
Create Entity Manager for source database
Create Entity Manager for destination database (embedded Derby ...
2
votes
4answers
670 views
how to schedule backup in sql server 2008?
how can I schedule daily backup at 9:00pm in SQL server 2008?
2
votes
1answer
251 views
Does Azure Shared Access Signature mean anyone can access my blobs?
I am writing a backup service to backup a SQL database and save it in cloud storage. I have actually implemented this already with Amazon S3 but as the application will be distributed to customers, I ...
2
votes
3answers
129 views
What is a faster way to backup and restore a MySQL DB than mysqldump? (faster than 4 hours)
We have a database that is about 3GB (in text) after mysqldump is used to dump a text representation of it, and then
mysql < mysqlstatement.sql
is used to restore the database. But it takes 4 ...
2
votes
3answers
948 views
Backup and Restore from SQL Server 2005 to 2008 express edition?
I'm having a huge problem with a client.
Their infrastructure blows, and most of the development done end up with mysterious errors(which only happen in their environment).
What I'm trying to do is ...
2
votes
5answers
520 views
PHP Script to Backup MySQL Database
I'm trying to write a PHP script to backup a MySQL database:
if ( $db_resource = mysql_connect($db_server, $db_username, $db_password, $db_newlink) )
{
if ( mysql_select_db( $db_name, ...
2
votes
1answer
639 views
MySql: “SHOW CREATE TABLE” doesn't work for tables named “x-…”?
The SWOW CREATE TABLE query doesn't seem to give any result if the table has no rows.
(At least not in my php setup.)
Is there an easy way to get around that without delving into the meta tables?
If ...
2
votes
3answers
3k views
How to write the Mysql binary log position of master when doing a mysqldump from slave?
I am currently running mysqldump on a Mysql slave to backup our database. This has worked fine for backing up our data itself, but what I would like to supplement it with is the binary log position ...
2
votes
1answer
118 views
SQL Backup files, distinguish partial and full backup files
I have scheduled backups running through SQL Agent, with Full Backups nightly, and differential backups hourly. Is there a way to determine which of the backup files is the Full backup, and which is ...
2
votes
2answers
4k views
View all transaction logs in SQL Server 2008
The problem is this:
t0: Insert is made into my database
t1: Delete is executed
t2: Full backup is made
t3: Transaction log backup is made
How can i recover the deleted record after t3 (which is ...
2
votes
2answers
2k views
What's the fastest way to import a large mysql database backup?
What's the fastest way to export/import a mysql database using innodb tables?
I have a production database which I periodically need to download to my development machine to debug customer issues. ...
1
vote
0answers
25 views
Using SMO to backup SQL Server 2005 Database with C# Windows Forms Application, Back up failed
This is my code to back up my database I followed this tutorial, as you can see, the codes are identical. The error comes after I fill in the variables. The error I get is
Backup failed for ...
1
vote
1answer
20 views
Is the pgbackups addon for Heroku fully managed?
I am using the pgbackups addon from Heroku and trying to figure out what the best option is for me: http://addons.heroku.com/pgbackups
I want to basically backups to happen on a daily basis, so I am ...
1
vote
1answer
40 views
Minimum GRANTs needed by mysqldump for dumping a full schema? (TRIGGERs are missing!!)
I have a MySQL user called dump with the following perms:
GRANT USAGE ON *.* TO 'dump'@'%' IDENTIFIED BY ...
GRANT SELECT, LOCK TABLES ON `mysql`.* TO 'dump'@'%'
GRANT SELECT, LOCK TABLES ON ...
1
vote
1answer
43 views
Backup Oracle 10g Database from Windows Server 2003 R2 on which command line is disabled
I need to backup Oracle 10g Database from Windows Server 2003 R2 where command line is disabled by some virus problem. RMAN and other graphical utilities are also not working. Only possible thing is ...
1
vote
1answer
25 views
What happens to SQL Server jobs that are scheduled during a backup?
Hypothetical question:
If a maintenance plan is scheduled to run a full backup of several databases while they're online, and during this time other jobs are scheduled to run (stored procedures, SSIS ...
1
vote
1answer
39 views
My Sql Database Backup
HI All,
I have a MYSQL DATABASE ,I want to create backup of this database into another machine(secondary) ,and to link the machine with original database(primary)
Is there any way that if ...
1
vote
2answers
135 views
Using Powershell to get SQL Backup Data
I've been looking at ways to automatically get information about SQL backups, and the Powershell script in this Technet article would do nicely, except for an issue with the data it returns.
When ...
1
vote
2answers
58 views
Managing SQL Backup Sets
I would say that I'm bridging the gap between the beginner and intermediate user in SQL Server. I've taught myself through google searches, but I can't find anything decent related to this question.
...
1
vote
3answers
53 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 ...
1
vote
1answer
39 views
Tables not recognized on restored geodjango postgis backup
So I backed up my geodjango postgis database using pg_dump before performing some calculations which I've managed to mess up. I've created a new database using
createdb -T template0 -O proj ...
1
vote
1answer
153 views
VS2010 Database Project Back up location
Is there a way to change the back up location for only my database in my database project settings or do I have to do that in a Pre-Deployment script and uncheck the back up database before deployment ...
1
vote
2answers
89 views
mysql best backup method? and how to dump backup to target directory
What is the best method to do a MySQl backup with compression? Also, how do you dump that to specific directory such a C:\targetdir
1
vote
1answer
77 views
Sqlite db scheme to Django models
I am trying to get my local sqlite db up and running on GAE. According to this post, there is no way for me to get my local db up there directly. That's why I would like to do something like this:
I ...
1
vote
2answers
524 views
Database Mirroring / Postgres Streaming Replication
I am not a DBA; I'm the primary developer of an enterprise database based application.
I'm currently specing out some new machines to upgrade our existing enterprise database. Currently we're ...
1
vote
2answers
51 views
Should I back up an SQL database to file or another DB?
I want to run a daily back up of an SQL database. I was thinking I would do this to another DB (primarily to act as a safeguard against my own mistakes or user errors), but all the scripts that I've ...
1
vote
1answer
1k views
How to backup/restore a Sybase 15 database to/from file using isql.exe (command line)?
I am writing a C# app that would call the isql.exe with appropriate arguments.
The interface that I need to conform to:
public void Backup(string serverName, string databaseName, string ...