Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
6answers
3k views

Best practice for backing up a production MySQL database?

What is best practice for backing up a production MySQL database (i.e. on a live website and potentially being updated)? Some goals I have in mind are: the DB backup should be an internally ...
7
votes
11answers
2k views

What is the best windows backup solution? [closed]

After finding this question, What's the best linux backup solution? I'm wanting to know what the best backup solution for windows is? I have a web application which has a decent amount of content ...
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
4answers
3k views

database mirroring/replication, SQL Server 2005

I have two database servers running SQL Server 2005 Enterprise that i want to make one of them as mirror database server. What i need is, create exact copy a database from primary server on mirror ...
4
votes
9answers
2k views

How do you handle off-site backups of terabytes of data?

I have terabytes of files and database dumps that I need to backup off-site. What's the best way to accomplish this? I'm currently weighing rsyinc to Amazon EBS or getting an appliance (eg ...
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
285 views

How do I pipe a git clone to archive (tar or gzip)

I am trying to make a simple backup script for my remotely hosted git repos. In the script I have a few lines that currently look like this: git clone git@server:repo.git $DEST tar czvf repo.tgz ...
2
votes
2answers
930 views

svnadmin dump in git

I'm in the process of moving a bunch of my work from personal SVN repo's to git repo's. I've had a cron job setup that runs svnadmin dump every night on all my repos into a remote folder. Is there ...
2
votes
2answers
193 views

Subversion: is it possible to backup only the delta since the last backup?

Does someone here know if it is possible to backup only the part of a subversion reposiotory that has changed since the last backup (that is: the delta)? Practically, that could be something like ...
2
votes
7answers
271 views

Does anyone use Virtualization to create a quicker disaster recovery of a development environment?

I'm getting pretty tired of my development box dying and then I end up having to reinstall a laundry list of tools that I use in development. This time I think I'm going to set the development ...
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
2answers
527 views

How can I slow down a MySQL dump as to not affect current load on the server?

While doing a MySQL dump is easy enough, I have a live dedicated MySQL server that I am wanting to setup replication on. To do this, I need dumps of the databases to import to my replication slave. ...
1
vote
4answers
313 views

How to backup SVN repository?

I often hear that having an SVN repository doesn't cancel need for backups. How is such backup done? I mean the repository will inflate over time, won't it? So do I back it up as a whole every time ...
1
vote
3answers
141 views

Incremental backups: how to track file deletions

I have an offsite backup solution which runs on C++ to break the files into blocks, and keeps track of the blocks using md5 hashes on a SQLITE3 database. And it transfers the blocks along with the ...
1
vote
1answer
572 views

Android SharedPreferences Backup Not Working

I've been doing my homework on how to backup SharedPreferences in my Android application, especially using reflection to maintain backwards compatibility. At least I've been trying. Unfortunately, ...
1
vote
2answers
91 views

Maintenance window and recovery for a large database

One of our teams is developing a database that will be somewhat large (~500GB) and grow from there (I know 500 Gigs may seem small to many of you, but it will be one of the larger databases in our ...
1
vote
2answers
68 views

Is there a way to only backup a SQL 2005 database structure fully, but only the data in a certain set of schemas?

I have several schemas in my database, and the largest one ("large" meaning disk space consumed) is my "web" schema which is a denormalized copy of data in the operational schemas. This ...
1
vote
1answer
45 views

Should I be backing up a webapp's data to another host continuously?

I have a webapp in development. I need to plan for what happens if the host goes down. I will lose some very recent session status (which I can live with) and everything else should be persistently ...
1
vote
3answers
286 views

(Lightweight) backup strategies for a LAMP application stack?

I'm researching some lightweight tools to backup a LAMP stack. The two most imporatant pieces are the php codebase and the mysql database. I can tar/bz2 the code and a mysqldump and restore it on ...
1
vote
3answers
519 views

Versioning SQLite databases with Subversion. Good idea or bad idea?

So I have a web system where every user gets a separate SQLite database which acts as a sort of their workspace. All of the database files are in a directory with database names that match up to the ...
1
vote
1answer
72 views

SQL Server 2008 backup from locked down hosting provider

I have a shared MS Sql 2008 database with my hosting provider and MS SQL Standard 2008 on my local box. They have the SQL Server locked down (rightly enough) but it menas I don't have sufficient ...
1
vote
2answers
752 views

how to backup your mamp pro mysql dbs?

while I find the apache portion of mamp pretty easy to backup, what is everyone using or how are you performing a scheduled backup of your mysql databases? It would be kinda annoying to export each DB ...
1
vote
1answer
239 views

Database backup - differential file size question

For my backup plan for SQL Server 2005, I want to do a full on Sunday: BACKUP DATABASE myDatabase TO DISK = 'D:\Database Backups\myDatabase_full.bak' WITH FORMAT GO Then I want to do a differential ...
0
votes
0answers
13 views

Backup VLDB replicated database in SQL Server? [migrated]

I have a problem with my backup strategy. Currently I'm doing a Full Backup every night and Tlog every 2 hours to TAPE. This used to work without problems, but the size of the DB is almost 2TB and ...
0
votes
1answer
24 views

How to create tar that gets updated for 2 weeks

I need to setup a bash script which tars and compresses a directory. The tar should be updated every day after that point with the same directory. This should happen for a duration of 14 days until ...
0
votes
1answer
82 views

rdiff python module

Is there a python module that has the functionality for computing rdiff signatures and delta differencing? I need to perform these operations on a cross-platform application so I'll need something ...
0
votes
1answer
45 views

How to backup a [SQL Server] database if privileges are not present?

I have complete readonly access to a SQL Server Database. If I try to do a backup, I get the following message. The EXECUTE permission was denied on the object 'xp_get_tape_devices', database ...
0
votes
2answers
65 views

Implications of using SVN to backup DB dump files

So I want to provide nightly database backups to my clients and I was considering an option that I wanted to get others feedback on. My plan is simple. Since I am using Drupal I will use the ...
0
votes
0answers
22 views

Strategy for full backup of transactions

I have a small webapp that records monetary transactions (it's not a bank or anything like that) Since money is involved I want to have full record of all operations, even in the case of a complete ...
0
votes
0answers
50 views

How can I backup files stored on Amazon S3? [closed]

I have a web-service wherein users upload files and these are accessible by only them or to users whom they authorize. I need to keep a backup of these files. How can I keep backup of these files in ...
0
votes
2answers
68 views

How best could I optimize the way I'm backing up MySQL databases?

I have several websites hosted on a VPS and am currently performing database backups by running a shell script via cron that looks something like this: mysqldump -uusername1 -prootpassword dbname1 ...
0
votes
1answer
115 views

What does Transactional Backup Interval mean in the Backup Plan Wizard for Team Foundation Server?

I'm in the process of setting up a backup plan for a Team Foundation Server. I downloaded Power Tools for TFS and I'm using the Backup Plan Wizard that was included in that pack. I am now at the step ...
0
votes
1answer
208 views

Moving SQL Server backups to off-site storage with Amazon EC2?

What are some of the best practices available for taking SQL Server backups from an Amazon EC2 based server??? I have a nightly job that creates the backups but I still need to move them "off-site". ...
0
votes
1answer
37 views

programmers back-up methods and tools

yesterday just happened. A tired user(me) had the bad inspiration to reinstall xampp with overrwite option. Even if I've specified that I wish to preserve htdocs and mysql\data folders, the setup ...
0
votes
2answers
93 views

Looking for a version control based backup tool

I'm traveling all the time (every 2-3 months, I'm in a new city or country), with no real permanent address. I've managed to work out all the kinks over the last couple of years...except having a ...
0
votes
1answer
333 views

Stream rdiff - delta differencing?

I have a product that does online backups using rdiff. What currently happens is: Copy the file to a staging area (so the file won't disappear or be modified while we work on it) Hashes the original ...
0
votes
2answers
147 views

backup/restore data in mysql database

How to backup/restore data in mysql database very quickly?
0
votes
3answers
364 views

Can you retrieve source from a debug-compiled binary?

I was digging around and found an executable for something I wrote in Visual C++ 6.0 about 8 years ago. I never backed up the source code, but I think I always compiled everything in debug mode. I ...
0
votes
2answers
182 views

mySQL daily backup from one table to another

If I have 2 tables with the same definition, how would I backup data from it daily? Can I use mySQL Administrator to perform something like this At 12:00am everyday, copy all the rows from ...
0
votes
2answers
56 views

How to backup source repository and zip destination folders?

All sources are on windows OS, and destination backup is on Unix system (we are using Samba). My source repository is similar to : -Repository --Folder1 ---Files --Folder2 ---Files etc... I ...
0
votes
1answer
212 views

SQL Server differential backup file size smaller than previous one?

I have a production system running on an SQL Server 2008 DBMS, in Full recovery mode. I take a full backup each day at midnight, a log backup every two hours, and a differential backup every 6 hours ...
0
votes
1answer
183 views

Encrypted FTP Storage

I guess this is kind of a programming question, because I'm going to write a program if this doesn't exist. So I found a very cheap web-host (I don't really care about the actual web hosting). They ...
0
votes
5answers
2k views

Postgresql PITR backup: best practices to handle multiple databases?

Hy guys, i have a postgresql 8.3 server with many database. Actually, im planning to backup those db with a script that will store all the backup in a folder with the same name of the db, for ...
0
votes
4answers
140 views

Automated website folder backup system needed? Any recommendations?

Hi guys is there any backup software that can take periodic backups of online website folders and store them offline on a local system. Need something robust and would be nice if theres something free ...
0
votes
2answers
162 views

The strategy to get recovery from broken files?

Me and my colleague are trying to implement a mechanism to get recovery from broken files on an embedded equipment. This could be happened during certain circumstances, e.g. user takes off the ...
0
votes
7answers
1k views

dedicated server backup solutions?

Duplicate: http://stackoverflow.com/questions/15208/whats-the-best-linux-backup-solution I am about to purchase a dedicated linux server that has 160GB hard disk and will be used primarily for ...
0
votes
2answers
290 views

Partial import of Sql server 2005 database for local developement

So at work, my team is using a central SQL server 2005 database server for integration testing and I want to move to testing on my local database. The only problem is that the central database is in ...
0
votes
7answers
354 views

Continuous database backups?

I have the following scenario: Our system is running a SQL Server Express 2005 database locally (on each users desktop, if you will). The system is storing a lot of production data from a machine. ...
0
votes
2answers
508 views

What are the best practices to use to pass a web application from development staging to production?

Our Development environment has many layers and is complicated to replicate or even backup effectively. Basically the File system (ie. /usr/appdir/webapp...) has other applications serving our web ...
-2
votes
0answers
16 views

How to backup and restore mysql database from linux dedicated server [migrated]

I have launched my project on dedicated linux server where i connect my server by putty. In my server i installed mysql, php & apache for security purpose i don't install phpmyadmin. I don't know ...