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...
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
...
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?
...
My SQL Server 2005 doesn't restore a backup because of active connections. How to force it?
...
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
...
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...
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 ...
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...
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...
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...
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...
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...
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.
...
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...
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?
...
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...
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...
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...
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 ...
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...