August 6, 2017 at 10:46 am
Hi,
Database size is 65.4 gb (including mdf, log file and file stream directory)
Full backup size is 341 GB.
How to reduce full backup and what is reason for high backup file size.
Pls advise a solution for reduce backup size
sql server ver - sql server 16 64 bit
Regards
Binu
August 6, 2017 at 12:06 pm
If you constantly backup to the same file and you don't have it set to overwrite, then you have every backup you ever made appended to the same file. The way most people have backups setup is that it creates a new file for each backup and deletes the older files over time.
--Jeff Moden
Change is inevitable... Change for the better is not.
August 6, 2017 at 3:04 pm
and the specifics:
if you scripted the backup command, you'll see NO INIT which means append to the previous backup file; changing it to INIT will replace the file, effectively deleting the previous backups, unless you change the name.
BACKUP DATABASE [master]
TO DISK = N'X:\MSSQL\SQLBackups\STORM-ORIGIN\master\FULL\STORM-ORIGIN_master_FULL_20170701_020000.bak'
WITH NOFORMAT,
NOINIT,
NAME = N'master-Full Database Backup',
SKIP,
NOREWIND,
NOUNLOAD,
STATS = 10
GO
if you look at the backup GUI, you currently have this setting, instead of the Overwrite command which you can see is the next selection
Lowell
August 7, 2017 at 8:56 am
Thanks for info
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply