backup

How to Take Taking online Hot Backup of lucene FileDirecotry index?

Hi, I am thinking of adding JMX bean for taking hot backup of lucene index. LuceneMBean mbean = new LuceneMBeanImpl(); ObjectName name = new ObjectName("indexing.index:type=lucene"); MBeanServer mbs = ManagementFactory.getPlatformMBeanServer(); mbs.registerMBean(mbean, name); LuceneMBean will have method called backupIndex(St...

Backing Up Email

What's a good way to backup old emails? In my case, I own a domain name that forwards all email to a Gmail account. I'm afraid that Gmail will one day go away, start charging, or lose my emails. It'd be nice to have the ability to search the emails that have been archived. Thanks ...

Is there (an automated) way to backup Hudson CI files?

Here at my company we have three Hudson CI servers with 100+ jobs configured. We are looking for an automated way to periodically backup job configurations and build history. Currently we have an ant script that we configure as a job but it's not easy to maintain and not elegant. Have any of you found a way to manage this? ...

When restoring a backup, how to disconnect all active connections?

My SQL Server 2005 doesn't restore a backup because of active connections. How to force it? ...

Scheduling backup in sqlserver 2005 (not able to Script Action To Job)

Hi, I'm trying to specify backup, the scripting to a new job as described in http://support.microsoft.com/default.aspx/kb/930615 However, the option Script Action to Job is not available to me (disabled). Could it be insufficient rights for the logged on user? Which rights must I grant the user? Thanks, Anders, Denmark ...

Restore Database "with replace" - is "with move" neccesary?

Database backup was created with files in location A Database files then moved to location B using ALTER DATABASE MODIFY FILE Now restoring the backup using WITH REPLACE created when files were in location A. Should the WITH MOVE option be specified with the new location? Or does WITH REPLACE imply using the current locations regardless...

Verifying Full database backups "WITH CHECKSUM"

We have a daily maintenance plan in SQL Server 2005 that performs a full backup to disk using the "Back Up Database Task". "Verify backup integrity" is enabled but from what I understand data integrity is only validated if the backup media contains a checksum, which is enabled by the "WITH CHECKSUM" option during the backup. I can see ...

WSS 3.0 Backup/Restore Root Site Collection to Sub-Site of New Site Collection

Our intranet was originally setup to be at the root of its site collection. We are trying to change this so that our new internet site will live in the root and the intranet will be a sub-site. At this point I have created a new web application and site collection to house the internet and intranet. I used the 'stsadm -o backup' command...

Backing up to the cloud

HI there: I m a software developer and as (probably) most of you, have an app that has data that i want to back up to a different location. I created this little application that will back up my data every so often and then keep a copy to ourselves and do another copy and upload it to S3. The "customer" (ie the actual owner of this d...

Backup to Another Farm with MOSS SP2

There seems to be no end to conflicting information out there regarding whether or not it is necessary to use "setsitelock" when backing up a site collection for deployment to another farm, if both farms have SP2 installed. According to Bob Fox's blog (comments disabled), it is no longer necessary: http://bobfox.securespsite.com/foxblog...

SQL Server nightly job log management strategy

I have a nightly job that does a bunch of inserts. Since I have a full recovery model, this increases my transaction log size. Currently I have my log file big enough to accommodate these transactions, but the issue is that the transaction log is mostly empty throughout the day. Is it an issue (besides disk space) to have a huge (most...

rsync and MyISAM tables

I'm trying to use rsync to backup MySQL data. The tables use the MyISAM storage engine. My expectation was that after the first rsync, subsequent rsyncs would be very fast. It turns out, if the table data was changed at all, the operation slows way down. I did an experiment with a 989 MB MYD file containing real data: Test 1 - recop...

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 handy since this is a production site. Does anyone know of a program/script that will help me, or even a way to do it? Thanks. ...

How to build a script to backup all databases in SQL Server?

We need to backup 40 databases inside a SQL Server instance. We backup each database with the following script: BACKUP DATABASE [dbname1] TO DISK = N'J:\SQLBACKUPS\dbname1.bak' WITH NOFORMAT, INIT, NAME = N'dbname1-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10 GO declare @backupSetId as int select @backupSetId = positi...

SQL Server 2005 Backup File Deletion

I wanted to reduce the size of my log file in SQL SERVER 2005, which grown to 16 gigs, so I created a backup and used the dbcc shrinkfile command to shrink it. All that is set. Now what should I do with the backup file that is created - should I delete it? What impact will deletion have? ...

Ordering files transferred by rsync

We're currently using rsync to run a backup job. This job takes several hours. As there are some parts of the backup that are more important than others, we would like to ensure that they are backed up before everything else (i.e. that rsync transfers those files first). This should be easily accomplished using rsync --files-from. Un...

Desktop application allowing backup (syncing) of local folders onto (multiple) Cloud Storage ?

I find it odd that this question hasn't been asked already... I thought there were more people paranoid that I am... Anyway, is there any desktop application, that allows me to backup a given folder to a (Cloud) storage service (Amazon / Rackspace / ...) ? Note: I am not looking for companies providing backup solutions, there are plent...

Linux Data Warehouse System for User Files?

I work at a large university and much of my department's backup requirements are provided by central network services. However, many of the users have collections of large files such as medical imaging scans, which exceed the central storage available to them. I am seeking to provide an improved backup solution for departmental resource...

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 should be easy to (incrementally) update the backup Basically, I want a perfect mirror, with the possibility to update easily. As such, the ...

Backup configuration of Hudson Master systems

I need Backup configuration of Hudson Master systems Detailed information If a Hudson Master system goes down, we need to be able to bring it back up on a different VM as soon as possible (may be 3 hours). Therefore, I need to develop a way to backup the configuration and resetup a new VM reliabily. can any body let me know best way s...