active questions tagged backup - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T21:04:08Zhttp://stackoverflow.com/feeds/tag/backuphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1900434/iproblem-with-backing-up-mysql-database0IProblem with backing up mysql databaseDinesh2009-12-14T11:44:47Z2009-12-14T15:17:17Z
<p>When i use this it works fine </p>
<pre><code>C:\Program Files\MySQL\MySQL Server 5.0\bin mysqldump.exe
--user=dinesh
--password=accounting
--host=dinesh
-C
--routines
--default-character-set=utf8
--Opt inventory
> C:\\R14122009_12469.Sql
</code></pre>
<p>But when t pass Path like </p>
<pre><code>"C:\Documents and Settings\Wild\Desktop\f report\New Folder\R14122009_12469.Sql"
</code></pre>
<p>It show an error <code>table not found</code></p>
<p>Is there any way where I can save the backup at any place at runtime selection? </p>
http://stackoverflow.com/questions/1895717/delete-backup-files-older-than-7-days0Delete backup files older than 7 daysrockbala2009-12-13T06:10:41Z2009-12-14T14:16:51Z
<p>Using osql command, SSQL backup of a database is created.
It is saved to Disk.
Then renamed to match the date of the day backup was taken.
All these files are saved in a single folder all the time.</p>
<p>for example:
Batch1.bat does the following
1) Created backup.bak
2) renamed to backup 12-13-2009.bak (this is done by the combination of % ~ - etc to get the date parameter)</p>
<p>This is now automated to take backup everyday by Task scheduler in Windows.</p>
<p>Can the batch file also be modified to delete backup files older than 7 days? if so, how ?</p>
<p>If it is not possible via batch file, other than manually deleting the files are there any other alternatives to automate the deleting job ?</p>
<p>Thanks in advance, Balaji S</p>
http://stackoverflow.com/questions/1898929/lightweight-backup-strategies-for-a-lamp-application-stack1(Lightweight) backup strategies for a LAMP application stack?The MYYN2009-12-14T04:32:20Z2009-12-14T05:06:18Z
<p>I'm researching some lightweight tools to backup a LAMP stack. The two most imporatant pieces are the </p>
<ul>
<li>php codebase and</li>
<li>the mysql database.</li>
</ul>
<p>I can <code>tar/bz2</code> the code and a mysqldump and restore it on a new server (if the old one crashes) and this is more or less fine.</p>
<p>Anyway, are there more complete solutions to this? </p>
<ul>
<li>e.g. track and re-install additionally installed pear-packages;</li>
<li>track other packages related to the LAMP stack installed via linux package managers, e.g. APC; </li>
<li>keep mysql and php configurations alongside backups and being able to restore them automatically ...</li>
<li>possibly complete server images, which can be restored without the need to reinstall everything ..</li>
</ul>
<p>I'm curious about hints, tips, experiences, solutions ..</p>
http://stackoverflow.com/questions/61888/using-subversion-for-general-purpose-backup6Using Subversion for general purpose backupImran2008-09-15T05:16:15Z2009-12-13T20:30:43Z
<p>Is it possible to use <a href="http://en.wikipedia.org/wiki/Subversion%5F%28software%29" rel="nofollow">Subversion</a> (SVN) as general purpose backup tool? (As a kind of <a href="http://en.wikipedia.org/wiki/Rsync" rel="nofollow">rsync</a> alternative.)</p>
http://stackoverflow.com/questions/1894840/gae-datastore-backup1gae datastore backupantony.trupe2009-12-12T03:54:52Z2009-12-13T12:01:44Z
<p>Is it necessary to do backups of gae's datastore?<br>
Does anyone have any experience, suggestions, tricks for doing so?</p>
http://stackoverflow.com/questions/1892053/how-do-i-backup-my-server-configuration-locally0How do I backup my server configuration locally? [closed]Webnet2009-12-12T02:29:53Z2009-12-12T03:47:49Z
<p>I'm running a new dedicated server and am looking to backup the general apache config and all other server configurations including php.ini</p>
<p>Does the WHM backup tool cover this or should I seek another route?</p>
http://stackoverflow.com/questions/1889583/why-is-a-hot-backup-size-smaller-than-a-cold-backup-size0Why is a hot backup size smaller than a cold backup size? [closed]ramnam2009-12-11T17:26:52Z2009-12-11T17:26:52Z
<p>Or is it not true at all..</p>
http://stackoverflow.com/questions/1887364/git-clone-to-external-drive-for-backup3GIT clone to external drive for backupPaddy2009-12-11T11:10:24Z2009-12-11T12:41:45Z
<p>Hey,</p>
<p>Go easy on me, I'm not much of a command line man... We have GIT set up within our windows network (using msysgit & GitExtensions). We each have our own repositories and we push to a remote 'bare' repository on one of our servers. All good.</p>
<p>I'm trying to set up a scheduled job on the server, which will clone a repository from the C drive to an external drive (on F) - having some difficulty getting this to work. I can do this in GIT bash relatively easily, but I'm not sure how to save this into a batch file that I can then scehdule.</p>
<p>What I have so far:</p>
<pre><code>rmdir F:\GitClone /s /q
mkdir F:\GitClone
mkdir F:\GitClone\Repo1
CD /D F:\GitClone\Repo1\
GIT CLONE /c/GIT/Repo1/
</code></pre>
<p>I've also tried the following for the last line:</p>
<pre><code>GIT CLONE C:\GIT\Repo1\
</code></pre>
<p>But this doesn't work either... I'm a little stumped and would appreciate some help. The C drive contains our bare repositories and the F drive being our external drive that we swap out daily...</p>
<p><hr></p>
<p>Several answers here that have been very useful, thanks. My resulting answer is probably a combination of these, so points for pointing out how to run a bash script and how to script the pull/push. </p>
<p>Need to bring these together to work so that it's happy when various drives are swapped in and out (i.e. clone a repository if it doesn't exist on the external drive and then only pull the differences otherwise), but that should be doable. Thanks to all.</p>
http://stackoverflow.com/questions/508699/how-do-you-backup-xampp-directory0How do you backup Xampp directory?James Musser2009-02-03T20:04:03Z2009-12-11T03:00:03Z
<p>I want to both backup my Xampp directory and also transfer it to another computer.</p>
<p>Is there an easy way to do this?</p>
<p>When I try to copy it, it gives me a restriction, even though I am not running xampp at the time.</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1876440/automatic-sql-server-2005-backup0Automatic SQL Server 2005 Backup [closed]Ved2009-12-09T20:00:26Z2009-12-10T17:41:47Z
<p>Guys,</p>
<p>I am not really a DB guy. We don't have any back up servers for our DataBase. There is a need for some kind of back up service which can take production back up daily once in the morning and once in the evening .</p>
<p>Any suggestions ? </p>
http://stackoverflow.com/questions/597732/backup-mysql-users0Backup MySQL usersCherian2009-02-28T08:09:07Z2009-12-10T13:52:01Z
<p>How do I backup MySQL users and their privileges? </p>
<p>Anything like mysqldump? </p>
<p>I am looking for something like
mysqldump -d -u root -p MyTable > Schema.sql</p>
http://stackoverflow.com/questions/1880532/running-routine-backups-from-my-application2running routine backups from my applicationEmotu Balogun2009-12-10T12:04:53Z2009-12-10T12:21:13Z
<p>i want to run a routine backup of my database from my java application. i'm actually considering a cron job within quartz to fire the backups at the specified time, but i don't know if thats the proper and most efficient way to do it. are there any other ways i can do it? and is there anything i should look out for??</p>
http://stackoverflow.com/questions/1876754/split-up-a-mysqldump-file-with-multiple-databases-by-database0Split up a mysqldump file with multiple databases, by databaseManish M. Shah2009-12-09T20:43:20Z2009-12-09T21:08:51Z
<p>Hello,</p>
<p>I have a mysqldump file of multiple databases (5). One of the database takes a very long time to load, is there a way to either split the mysqldump file by database, or just tell mysql to load only one of the specified databases?</p>
<p>Manish</p>
http://stackoverflow.com/questions/615728/import-dumped-svn-repo-into-visual-svn2Import Dumped SVN Repo into Visual SVNJames Van Boxtel2009-03-05T17:19:57Z2009-12-09T03:59:21Z
<p>I have dumped my repository on my old computer to a file with the command.
<code>svnadmin dump C:\myrepo/ > mydumpfile</code></p>
<p>Now I decided to use <a href="http://www.visualsvn.com/server/" rel="nofollow">Visual SVN</a> on my new computer as opposed to just a baseline subversion. How do I import my repository into VisualSVN?</p>
http://stackoverflow.com/questions/1828592/cognos-lae-backup-automation-batch-file0Cognos LAE Backup Automation (Batch File?)Kirby2009-12-01T20:14:04Z2009-12-08T14:48:31Z
<p>Within Cognos 7.4 security.. one would create an LAE file to export all their users... </p>
<p>directions here... <a href="http://www.cognos-install.co.uk/articles/backups/access%5Fmanager%5Fexport%5Fto%5Flae.asp" rel="nofollow">http://www.cognos-install.co.uk/articles/backups/access%5Fmanager%5Fexport%5Fto%5Flae.asp</a></p>
<p>Now you'll notice at the bottom "Finally, it is possible to build an automated process for this task, however this is outside of the scope of this document. If you feel that an automated process is something that is important to your organization then this can be achieved using Technical Consultants with Cognos Planning expertise."</p>
<p>Does anyone have a batch script... or command line for Access Manager.. for exporting an LAE file? I would like to have automated backups of my users incase of a disaster. This cannot be the first request for this.</p>
<p>TIA,
Kirby</p>
http://stackoverflow.com/questions/707947/create-new-database-from-snapshot-sql-server-20050Create NEW database from Snapshot (SQL Server 2005)roman m2009-04-02T01:15:00Z2009-12-08T00:20:30Z
<p>I'm using SQL Server 2005. I've created a snapshot of database (RM_DB), I want to create (RM_DB_NEW) from that snapshot. The only option i get when I right-click on my snapshot is "Restore [RM_DB] from this snapshot".</p>
<p>Can I create a NEW database from my snapshot?</p>
<h3>EDIT</h3>
<p>I'm not interested in creating a backup out of the snapshot, this would undermine the whole point. I can back my DB up any time, and restore any other db from it. I'm interested in the ability of doing it all <strong>DIRECTLY FROM A SNAPSHOT</strong></p>
http://stackoverflow.com/questions/1851996/backing-up-and-restoring-a-plone-instance1Backing up (and restoring) a Plone instance.java.is.for.desktop2009-12-05T11:46:53Z2009-12-07T05:58:27Z
<p>Hello, everyone!</p>
<p>I have a Plone installation in my home directory under Linux. <code>~/Plone</code>.
This was made from a default distribution of Plone from its website. So Plone compiled own python and is bundeled with Zope.</p>
<p>Please tell me, which files are necessary to backup if I want to:</p>
<ul>
<li>1) Backup the whole data ever stored in my Plone instance;</li>
<li>2a) Restore the backed-up data in a <strong>same version</strong> of Plone, but located elsewhere.</li>
<li>2b) Restore the backed-up data in a <strong>(slightly) newer version</strong> of Plone.</li>
</ul>
<p>I thought, maybe it's a good idea to just backup the whole <code>~/Plone/zinstance</code> directory, but I found thousands of occurrences of <code>/home/me/Plone/...</code>, even in the file <code>zinstance/var/filestorage/Data.fs</code> <strong>(!!!)</strong>. Can this be right?</p>
<p>I found <strong><a href="http://plone.org/documentation/how-to/move-site" rel="nofollow">this</a></strong> resource, but it's not specific enough.</p>
http://stackoverflow.com/questions/1854480/filetype-bak-starts-with-tape0Filetype ".bak" starts with "TAPE" [closed]unknown (google)2009-12-06T05:52:12Z2009-12-06T06:19:59Z
<p>Hi,</p>
<p>I realize this isn't strictly a programming question, but I have a file with the extension .bak, and the file starts with "TAPE". What program produced this?</p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/792703/sql-server-2008-best-backup-solution1SQL Server 2008 - Best Backup solutionalexn2009-04-27T08:52:20Z2009-12-05T01:25:51Z
<p>I'm setting up a SQL Server 2008 server on a production server, which way is the best to backup this data? Should I use replication and then backup that server? Should I just use a simple command-line script and export the data? Which replication method should i use?</p>
<p>The server is going to be pretty loaded so I need an efficent method.</p>
<p>I have access to multiple computers that I can use.</p>
http://stackoverflow.com/questions/487675/how-can-i-schedule-a-daily-backup-with-sql-server-express3How can I schedule a daily backup with SQl Server Express?edosoft2009-01-28T13:51:01Z2009-12-04T17:53:17Z
<p>Aloha,</p>
<p>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 (should-have) I'd like to keep only the last X backups (for space-saving reasons obviously) Any pointers?</p>
<p>[edit] SQL server agent is unavailable in SQL server express...</p>
<p>-Edoode</p>
http://stackoverflow.com/questions/244337/how-to-back-up-a-huge-file-with-bacula2How to back up a huge file with Bacula?J. Pablo Fernández2008-10-28T18:34:09Z2009-12-02T19:32:14Z
<p>It currently is 700MB but it's conceivable that it'll grow beyond the 1GB. Normally I just copy this file to another location (for the curious, it's the database of a Zope instance,
a ZODB file).</p>
<p>This file changes little from day to day, but I understand Bacula can't do inside-the-file subdivision for incremental backups. Anyway, it doesn't matter. What I want to do is a full backup daily and keep two of them and a full backup weekly and also keep two of them. So
at any given time I can get yesterday, the day before yesterday, a week
ago and two weeks ago. Would you think that's a good idea?</p>
<p>I suppose I should make two schedules, daily and weekly. But which numbers should I have on the volumes and the pools to achieve this? Two volumes of 1.5GB? Any hints or guidance is welcome, I'm not a sysadmin and my experience with Bacula is very limited.</p>
http://stackoverflow.com/questions/1792397/backing-up-a-mercurial-repository-while-preserving-timestamps1Backing up a mercurial repository while preserving timestampsJim Hunziker2009-11-24T19:31:57Z2009-11-29T11:30:54Z
<p>Is there a way to back up a mercurial repository while preserving the files' timestamps?</p>
<p>Right now, I'm using <code>hg clone</code> to copy the repository to a staging directory, and the backup program picks up the files from there. I'm not pointing the backup program directly at the repository because I don't want it to be changing (from commits) while the backup is happening.</p>
<p>The problem is that <code>hg clone</code> changes all the files' timestamps to the current time, so the backup program (which I cannot change) thinks everything has been modified.</p>
http://stackoverflow.com/questions/1446975/backup-xen-domu-machines-while-running0Backup Xen domU machines while running. [closed]Jonathan Hawkes2009-09-18T21:47:45Z2009-11-29T02:59:47Z
<p>The host machine is running CentOS 5.3 and using LVM to create Logical Volumes (LVs) and to allow live snapshots to be taken of those LVs. My thought was to store all of the image files for the Xen underpriviledged domains (domU) in a single LV and periodically take a snapshot of that LV and copy the disk images out of the snapshot in order to make a live backup of these systems. Is this doable? Is there a better way?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1807181/backup-sql-server-2005-database-without-data0backup SQL Server 2005 database without dataNagendra Baliga2009-11-27T07:02:02Z2009-11-27T18:48:17Z
<p>I have one stored procedure to backup the database. It will backup metadata as well as data.</p>
<p>Is there any option to back up the database with out data. ie, back up only the schema (Empty tables).</p>
<p>I don't want to script the database.</p>
http://stackoverflow.com/questions/1807716/how-to-create-a-snapshot-or-clone-of-php-mysql-page-inspiration-needed0How to create a snapshot or clone of PHP, MySQL page... Inspiration neededjimbo2009-11-27T09:41:35Z2009-11-27T10:24:47Z
<p>Hi, </p>
<p>We have a web application that creates a dynamic PHP page with all the MySQL stored details a user has entered via a number a forms. So far so good, but we want this information stored some how to be refereed to at a later date, as an administrator can make changes to the data, which reflects on calculations that are worked out from this saved data. </p>
<p>When going back over this saved data we need to be able to see all the information submitted for that particular calculation, so if that data has changed we will see what is was relating to that calculation. Now we have thought about maybe a snapshot when the calculation is done, pdf of the webpage or something similar would do, but is this simple to do?</p>
<p>I hope this makes sense...</p>
http://stackoverflow.com/questions/398332/what-backup-strategy-do-you-use-for-your-code12What backup strategy do you use for your code?tvanfosson2008-12-29T18:54:23Z2009-11-24T23:05:28Z
<p>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, some sandbox-type projects may not have yet ;-) made it into SCC.</p>
<p><strong>EDIT</strong>: I have multiple projects in my projects directories. Not all are in current development but anyone of which might need to be "fixed" whenever a bug is found. Restoring a single, active project from SCC seems perfectly reasonable. Restoring all of the couple of dozen projects that I support from SCC seems less reasonable than restoring from a backup and syncing as necessary from SCC.</p>
<p>What backup strategies, other than source code control, do you use to keep your code safe?</p>
<p>A similar question can be found at <a href="http://stackoverflow.com/questions/38388/organization-wide-backup-strategy">http://stackoverflow.com/questions/38388/organization-wide-backup-strategy</a>, but I'm more interested in hearing others' personal strategies if you happen to work in an organization that has no overal strategy. I'll provide my strategy in an answer.</p>
http://stackoverflow.com/questions/1790755/sql-server-2008-auto-backup0SQL Server 2008 Auto BackupChris Klepeis2009-11-24T15:21:58Z2009-11-24T15:48:35Z
<p>We want to have our test servers databases updated from our production server databases on a nightly basis to ensure we're developing on the most recent data. We, however, want to ensure that any fn, sp, etc that we're currently working on in the development environment doesn't get overwritten by the backup process. What we were thinking of doing was having a prebackup program that saves objects selected by our developers and a postbackup program to add them back in after the backup process is complete.</p>
<p>I was wondering what other developers have been doing in a situation like this. Is there an existing tool to do this for us that can run automatically on a daily basis and allow us to set objects not to overwrite (without requiring the attention of a sysadmin to run it daily).</p>
http://stackoverflow.com/questions/813019/windows-2008-server-backup0Windows 2008 Server BackupDave2009-05-01T20:05:55Z2009-11-24T13:44:12Z
<p>What are my options if I want to just backup my data directories on Windows 2008 Server. It looks to me like the backup software built into the OS only backs up an entire hard drive. </p>
<p>Is my only option to copy the files?</p>
http://stackoverflow.com/questions/1784802/how-to-delete-from-a-database4How to delete from a database?Abhinav2009-11-23T17:47:32Z2009-11-24T03:57:56Z
<p>I know of two ways to delete data from a database table</p>
<ul>
<li>DELETE it forever</li>
<li>Use a flag like isActive/isDeleted</li>
</ul>
<p>Now the problem with isActive is that I have to track everywhere in my SQL queries that whether the record is active or not. Using DELETE however gets rid of the data forever.</p>
<p>What would be the best way to backup this data?</p>
<p>Assuming I have multiple tables in a database, should I have a common function which just backs everything up and stores it in another table (in XML probably?) or is there any other way. </p>
<p>I am using MySQL but am curious about techniques used in other DBs as well.</p>
http://stackoverflow.com/questions/664869/backup-mssql-via-c3backup MSSQL via C#Harry2009-03-20T03:26:24Z2009-11-24T01:26:53Z
<p>How easy is it to backup a Database via C# code?
I see lots of related questions, but no real answers.</p>