I have a database of size 290 GB running on SQL Server 2005 (compression is not available) and disk space is z: drive 250 GB and Y: drive is 80 GB. How can I take a full backup in this scenario? How can I split full backup into different files in this ratio? Pls suggest a method to do this.
migrated from stackoverflow.com Apr 17 at 5:24
If you have access to another server on your network with larger disks, you can do database backup to a network share:
For this to work, the share would need to have Write permissions from the domain account under which your SQL Server is running. If you don't have access to another server with enough disk space, you may want to get an inexpensive Network Attached Storage type of device (e.g. synology) and perform your backups to it. |
|||
|
You don't have to use local storage for backup ( and you should not ). Also, by database size did you mean only data, because if your log file is large backup will be that much smaller. To split:
This will split database in 3 equal sized parts. |
|||||||
|
There are third party products, such as SQL Lightspeed, that provide backup compression for Standard editions of SQL Server. There is a good chance that the purchase and installation of such a product will allow you to back up locally. The size of the nacho file depend on how much data is actually stored in the database and it's compress ability. |
|||
|