views:

250

answers:

1

What tools do you guys recommend for backing up files and SQL Server databases on Windows 2003?

I'm looking for tools to run daily backups of both files and SQL Server databases. Compress them up and stick them on NAS drives.

I'm looking for cheap / FREE options if possible.

+2  A: 

Here at my company I do the following.

At the end of the day I take a full back-up, using a SQL Server job. The syntax for this is well documented in BOL however here is an example:

    BACKUP DATABASE [DATABASE]
    TO DISK = '[PATH]\[DATABASE].BAK'
    WITH INIT;

I then execute a .bat file that runs a compression process using a free Zip utility to make the files smaller before been shipped off.

During the day I have 4 transaction log backup jobs that run every 10-12 minutes. Each backing up to a separate file.

Then Every hour I run a differential back-up (this will back-up only the differences since the last back-up) I then destroy the transaction files and start again.

Hope that gives you a little info on how it can be done in SQL Server without any 3rd party costly tools.

MrEdmundo
Which free zip utility do you use? I've played around with PowerArchiver for doing this as they have a scheduled zip function built in. This was very unreliable though so I stopped using it.
Craig Bovis
Hi, we use something called 7-zip. The previous guy before me had it installed and I've never had reason to upgrade or remove it. No reliability problems at all. Runs with a simple source - destination command call.
MrEdmundo
Thanks, sounds like the one tool could handle both my SQL compression plus my file backups as well.
Craig Bovis