The act of saving ones files, data, applications, etc. to secondary media, allowing for the recovery of the files, data, applications, etc. in the event that the primary media becomes unavailable (fails). Also the secondary media used for storage.
92
votes
17answers
56k views
what is the best way to backup subversion repositories?
I'm new to svn and I'd like to know what are common methods of backing up repositories in a windows environment?
52
votes
6answers
79k views
How to parse the Manifest.mbdb file in an iOS 4.0 iTunes Backup
In iOS 4.0 Apple has redesigned the backup process.
iTunes used to store a list of filenames associated with backup files in the Manifest.plist file, but in iOS 4.0 it has moved this information to ...
43
votes
9answers
79k views
SQL Server: Database stuck in “Restoring” state
i backed up a data:
BACKUP DATABASE MyDatabase
TO DISK = 'MyDatabase.bak'
WITH INIT --overwrite existing
And then tried to restore it:
RESTORE DATABASE MyDatabase
FROM DISK = 'MyDatabase.bak'
...
36
votes
4answers
15k views
Backup a Local Git Repository
I am using GIT on a relatively small project and I find that zipping the .git directory's contents might be a fine way to back up the project. But this is kind of weird because, when I restore, the ...
32
votes
25answers
2k views
How do you back up your development machine?
How do you back up your development machine so that in the event of a catastrophic hardware malfunction, you are up and running in the least amount of time possible?
25
votes
8answers
43k views
What is a simple command line program or script to backup SQL server databases?
I've been too lax with performing DB backups on our internal servers.
Is there a simple command line program that I can use to backup certain databases in SQL Server 2005? Or is there a simple ...
25
votes
15answers
3k views
How do I do backups in MySQL?
How do I do backups in MySQL?
I'm hoping there'll be something better than just running mysqldump every "x" hours.
Is there anything like SQL Server has, where you can take a full backup each day, ...
24
votes
2answers
1k views
Android backup/restore: how to backup an internal database?
I have implemented a BackupAgentHelper using the provided FileBackupHelper to backup and restore the native database I have. This is the database you typically use along with ContentProviders and ...
23
votes
20answers
11k views
What's the best Linux backup solution? [closed]
We have a four Linux boxes (all running Debian or Ubuntu) on our office network. None of these boxes are especially critical and they're all using RAID. To date, I've therefore been doing backups of ...
21
votes
4answers
12k views
Using Subversion with DropBox
Is it a bad idea to use DropBox as a backup system for Subversion repositories?
Has anyone tried using Subversion with an an online file sharing utility like DropBox? What's your experiences?
My ...
21
votes
4answers
59k views
How to decrypt an encrypted Apple iTunes iPhone backup?
I've been asked by a number of unfortunate iPhone users to help them restore data from their iTunes backups. This is easy when they are unencrypted, but not when they are encrypted, whether or not the ...
19
votes
13answers
3k views
What is the best way to implement soft deletion?
Working on a project at the moment and we have to implement soft deletion for the majority of users (user roles). We decided to add an "is_deleted='0'" field on each table in the database and set it ...
17
votes
28answers
3k views
What backup strategy do you use for your code?
Everyone uses source-code control to manage versions (right?) and this provides some level of backup. There are times, however, when your local copy is out of sync with the repository. Moreover, ...
15
votes
17answers
775 views
Is there a fundamental difference between backups and version control?
How does version control differ from plain backups?
Let's forget about the feature decoration, and concentrate on the soul of version control. Is there a clear line that backups must cross before ...
15
votes
14answers
34k views
How can I schedule a daily backup with SQL Server Express?
I'm running a small web application with SQL server express (2005) as backend. I can create a backup with a SQL script, however, I'd like to schedule this on a daily basis. As extra option ...
15
votes
8answers
30k views
How to import a SQL Server .bak file into MySQL?
The title is self explanatory. Is there a way of directly doing such kind of importing?
15
votes
36answers
1k views
How often should you hit the Save button?
When writing code, I've noticed that different developers hit the Save button at different frequencies. This is in addition to whatever AutoSave setting has been set. Personally I have the AutoSave ...
14
votes
4answers
264 views
How to prepare for data loss in a production website?
I am building an app that is fast moving into production and I am concerned about the possibility that due to hacking, some silly personal error (like running rake db:schema:load or rake db:rollback) ...
14
votes
7answers
411 views
PHP backup script timing out
I have a backup script which backups up all files for a website to a zip file (using a script similar to the answer to this question). However, for large sites the script times out before it can ...
14
votes
10answers
17k views
14
votes
15answers
3k views
Free “Personal” source control system?
At work I use something called team foundations services. It's a source saving tool that stores change sets of code I "check in". Is there a similar product that's good for a single programmer. ...
14
votes
4answers
5k views
CouchDB Backups and Cloneing the Database
We're looking at CouchdDB for a CMS-ish application. I know the database is implemented as a set of files in the file system, what I'm looking for are common patterns, best practices and workflow ...
13
votes
8answers
5k 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 ...
13
votes
7answers
3k views
How does dedicated webhosting compare to Amazon's Cloud?
After stumbling into Amazon Web Services again I have finally checked their prices and am shocked. Positively. With their flexible billing and extremely low prices, is there any reason for still using ...
12
votes
6answers
832 views
Web site backup in PHP?
Does anybody know a clean PHP-based solution that can backup remote web sites using FTP?
Must haves:
Recursive FTP backups
Possible to run through a cron job
Easy to configure (easy adding of ...
12
votes
1answer
1k views
backup and restore ALL resharper settings
How can I backup and later restore (after a clean install) ALL resharper settings?
12
votes
9answers
7k views
Can I restore a single table from a full mysql mysqldump file?
I have a mysqldump backup of my mysql database consisting of all of our tables which is about 440 megs. I want to restore the contents of just one of the tables form the mysqldump. Is this possible? ...
11
votes
3answers
1k views
How to backup an AppEngine site?
So, you build a great shiny cloudy 2.0 website on top of AppEngine, with thousands upon thousands of images saved into the datastore and gigs of data at the blobstore. How do you backup them?
Ok, so ...
11
votes
1answer
5k views
Visual Studio 2008\Backup Files folder created when every new VS instance is opened
I think I have something broken with the path that VS 2008 saves the backup files. Since few days, it creates a new "Visual Studio 2008" directory in the same folder that my .sln file exists. Then, ...
10
votes
5answers
6k views
Backup of github repo
What is the best way to create a local backup of a git repository hosted on github?
I have the following needs:
The local backup should be a bare repo
The backup should include all branches
It ...
10
votes
6answers
5k views
Windows Backup for SVN Repositories
I am running a SVN server on my Windows Server and want to schedule an automated backup procedure. I will always be the only one working on the repository. Should I bother with hotcopy or can I use ...
10
votes
5answers
8k views
Subversion - Move Repository
I have a server that hosts my Subversion code base. That server is currently a Server 2003 box, and my IT admin wants to update it to Server 2008.
This means that I'm going to need to move my ...
10
votes
9answers
7k views
Speeding up mysql dumps and imports [closed]
Are there any tricks for speeding up mySQL dumps and imports?
This would include my.cnf settings, using ramdisks, etc.
9
votes
2answers
1k views
s3cmd failed too many times
I used to be a happy s3cmd user. However recently when I try to transfer a large zip file (~7Gig) to Amazon S3, I am getting this error:
$> s3cmd put thefile.tgz s3://thebucket/thefile.tgz
....
...
9
votes
1answer
402 views
Backup strategy for django
I recently deployed a couple of web applications built using django (on webfaction).
These would be some of the first projects of this scale that i am working on, so I wanted to know what an ...
9
votes
3answers
1k views
Backup Eclipse plugins and settings
I'm using Eclipse and have plenty of plugins installed and configured to my needs. Is there any good way to backup these plugins and the configuration of them. I want to be able to replay these ...
9
votes
10answers
6k views
Using Subversion for general purpose backup
Is it possible to use Subversion (SVN) as general purpose backup tool? (As a kind of rsync alternative.)
8
votes
6answers
2k views
Is “git push --mirror” sufficient for backing up my repository?
I'm a solo developer, working in a local Git repository. For backups, I want to send an exact copy of that repository off to another server.
Is it sufficient to do this?
git push --mirror
I'm ...
8
votes
4answers
2k views
Can I restore my source code that has been uploaded into Google AppEngine?
I recently had a hard drive crashed and lost all of my source code. Is it possible to pull/checkout the code that I have already uploaded to Google App Engine (like the most recent version)?
8
votes
6answers
3k views
How do I back up a remote SVN repository
I am currently moving my SVN server from my home server to my remote server so I can access it more easily from other locations.
My remote server is not backed up so I want to regularly back it up to ...
8
votes
8answers
10k views
How to backup database file to sdcard on android?
I'd like to add a feature to my android app that automatically backs up the sqlite database to the sd card.
What's the best way to go about this?
Any examples/tutorials available?
8
votes
3answers
2k views
What's the best way to back up data on Google App Engine?
Google itself provides two solutions.
http://code.google.com/appengine/docs/python/tools/uploadingdata.html
One of these is new and experimental and requires you to run a separate command (and ...
8
votes
3answers
4k views
What's a Backup and Recovery Process for Team Foundation Server 2010?
We have a new installation of TFS 2010 (on SQL Server 2008), and I'm planning the backup and recovery process.
It seems the configuration information and data is stored in the Tfs_Configuration and ...
8
votes
7answers
326 views
What source/version control to use for home?
I used to use svn, and I had AnkhSVN setup in visual studio. I ended up migrating the svn server from a linux box to a windows box about 4 years ago. I didn't have a good backup / restore process on ...
8
votes
3answers
6k views
SQL Server command line backup statement
Does any one know if there is a way to script out SQL Server backup in to a batch file, so that it could be executed from a command line?
8
votes
2answers
2k views
How do I backup a nexus repository manager
The nexus book: http://www.sonatype.com/books/nexus-book/reference/. Does not seem to spend any time on how one should go about backing up a nexus repository. If I am installing my snapshot and ...
8
votes
9answers
416 views
Offsite backups
I was recently tasked with coming up with an offsite backup strategy. We have about 2TB of data that would need to be backed up so our needs are a little out of the norm.
I looked into Iron Mountain ...
7
votes
4answers
345 views
Zip files with Java: Is there a limit?
I'm creating a backup routine for my application with Java.
However, when the zip file is over 4GB, or has more than 65,000 files (approximately), the zip file is corrupted.
I'm also testing the ...
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 ...