Reputation: 6971
This question might make one smile, really, HDD space is as cheap as dirt today. But nevertheless, with extremely slow internet connections (which is still the case in the major part of the world) transferring backups from different branches might be real pain in the back.
So, do you have any ideas on how to decrease database file size to a bare minimum? Absolutely any ideas are welcome.
Upvotes: 3
Views: 4840
Reputation: 6795
Upvotes: 6
Reputation: 135463
Have you tried compression? Database files tend to compress up really well since they are usually mostly text.
Upvotes: 0
Reputation: 755531
If you're only talking about the backups, there's a few SQL Backup solutions out there that offer backup compression. SQL Server 2008 also has backup compression built-in.
See: Red Gate's SQL Backup Pro
or here is a list of various products: http://www.mssqltips.com/products.asp?catid=15
If you're talking about actually reducing the size of the database per se - pick the right (= minimal) data types, use maintenance plans to compress and reclaim space from the database, don't over-index (that always uses lots of space) etc.
Marc
Upvotes: 0