I am looking to automate the encryption of my backups, and SQL Server 2005 does not appear to include built in functionality to do the work. Similar to the question here - Is it possible to configure SQL Server 2005 to auto-compress backups? - I am looking for a list of commonly used software to do the job
-
2You pretty much got that list in mrdenny's answer to your other question. – squillman Oct 13 '09 at 14:29
-
Your options are pay for product like SQL Backup, or your own scripts using utilities like 7zip, gpg. Choose! – Nick Kavadias Oct 28 '10 at 23:56
3 Answers
I have used SQL Backup from Red Gate for more than 2 years now and its awesome. It encrypts, compresses, recovers from network drop-outs and gives you object level restores from native backup files. They do a free 14 day trial, here: http://www.red-gate.com/products/SQL_Backup/index.htm
Hope you give it a go, you wont be disappointed.
Jonathan

- 419
- 3
- 12
Nope. Not with SQL 2005.
You might want to read over this topic: Is it possible to configure SQL Server 2005 to auto-compress backups?
A lot of those answers will apply to this one as well as compress & encrypt tend to go hand-in-hand.
-
Yes, I separated this issue out from that question, since I'm looking for a separate answer. I'll edit my question to make it clearer – blueberryfields Oct 13 '09 at 14:18
-
With SQL 2005 you can't encrypt backups, but you can encrypt them using third party tools.
Encryption and compression don't go hand-in-hand. Encrypted files are hard to compress, so if space is a concern, you might want to compress in stead of encrypt files and protect those compressed files with a password.

- 468
- 1
- 6
- 14
-
The second paragraph was apprently in response to my answer. It might've made more sense to put it as a comment on said answer... Also, please notice the word "tend" in my answer -- but I don't currently know anyone compressing without encrypting or vice-versa – Chris_K Oct 13 '09 at 14:18