October 21, 2013 at 11:58 am
I need to upload a backup of a DB but the size is greater then what is allowed so I need to split the backup file into smaller sizes that are no greater then 10GB each. The Backup was done via SSMS using the COmpression option to compress the backup. ANyone know of a way to split compressed SQL Servcer DB Backups?
Thanks
Kindest Regards,
Just say No to Facebook!October 21, 2013 at 12:27 pm
Hi YSLGuru, 😀
You can split backups over multiple files within SSMS or, if you already have a backup, split it with a compression tool like winzip, winrar, etc
Hope it helps. 😎
Jonathan Bernardez Bernardez
___________________________________________________________
DBD. MCSA SQL Server 2012
October 21, 2013 at 2:00 pm
You could always restore the backup so you can then back it up splitting it across multiple backup files to ensure they are less than 10GB.
October 21, 2013 at 4:34 pm
I'm pretty sure you can use one of the file splitting utilities to break them apart and put them back together even though they're encrypted. Other than that, you could split them during backup as was suggested, but that can be dangerous.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
October 22, 2013 at 6:41 am
Grant Fritchey (10/21/2013)
I'm pretty sure you can use one of the file splitting utilities to break them apart and put them back together even though they're encrypted. Other than that, you could split them during backup as was suggested, but that can be dangerous.
Grant, why would it be dangerous to split the file during the backup process?
I assume we're talking about using something similar to the following script:
BACKUP DATABASE [db_name] TO
DISK = N'file1.bak',
DISK = N'file2.bak'
...
October 22, 2013 at 6:44 am
Only because instead of managing a single file now you're managing many. Sometimes it's the only way to get the job done, but it does add a wrinkle that makes things less stable. That's all I meant.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
October 22, 2013 at 6:46 am
Grant Fritchey (10/22/2013)
Only because instead of managing a single file now you're managing many. Sometimes it's the only way to get the job done, but it does add a wrinkle that makes things less stable. That's all I meant.
Ok, I can see that. Just wanted to be sure there wasn't something else that I was missing.
October 22, 2013 at 8:07 am
Interesting comments... One thing that was not mentioned was if this process is a one-off or will be a part of a regular backup procedure. If it is a one-off then splitting the backup into multiple files is no big deal. However, if it is going to be a part of a regular production backup process, the DBA has to keep in mind there are more files to manage than a single backup file.
Kurt
Kurt W. Zimmerman
SR DBA
Lefrak Organization
New York, NY
http://www.linkedin.com/in/kurtwzimmerman
October 22, 2013 at 8:12 am
Like Kurt said is this a one off or a on-going thing. If it is a one-off and you don't want to use a tool to split the encrypted backup make sure you take the backup as a copy-only backup and then you won't have to worry about the extra files since they won't be part of your backup chain.
Viewing 9 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic. Login to reply