Sql-server – Backing up a really huge SQL Server database

sql serversql-server-2008

We have a SQL Server 2008 database of size over 200GB. There is no disk space on the server to take a backup. I really need to take a backup or make another copy of this database. what would be the best way to achieve this?

Thanks

Best Answer

If you do not have enough diskspace first confirm that you have backup compression enabled. This will greatly decrease the size of your database backup. If you still do not have enough space on your server to put your backup.

I see 3 options of achieving this

  1. Try backing up to a network share which has sufficient diskspace to store your database backup

--> If you do not have enough space on a networkshare

  1. Try backing up to different files on different drives/networkshares so you split the total size of the backup and store all the parts on different locations. This will also increase the speed of your backup (Check out http://www.mssqltips.com/sqlservertip/935/backup-to-multiple-files-for-faster-and-smaller-sql-server-files/)

--> If you still do not have enough space on any server/share/...

  1. If you can physically reach your server, go buy a USB disk with sufficient space and connect this to the server and backup to this location.