Differential backup files are almost the same size as full backups.

Hello All,
I have done a little research on this topic and feel like we are not doing anything to cause this issue. Any assistance is greatly appreciated. 
The details: Microsoft SQL Server 2008 R2 (SP2) - 10.50.4297.0 (X64)   Nov 22 2013 17:24:14   Copyright (c) Microsoft Corporation  Web Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor).  The
database I am working with it 23GB. The full backup files are 23GB, differentials are 16GB (and growing) and transaction logs bounce between 700KB to 20MB. The backup schedules with T-SQL follow:
T-Log: daily every four hours
BACKUP LOG [my_dabase] TO  DISK = N'F:\Backup\TLog\my_dabase_backup_2015_03_23_163444_2725556.trn' WITH NOFORMAT, NOINIT,  NAME = N'my_dabase_backup_2015_03_23_163444_2725556', SKIP, REWIND, NOUNLOAD,  STATS = 10
GO
Diff: once daily
BACKUP DATABASE [my_database] TO  DISK = N'F:\Backup\Diff\my_database_backup_2015_03_23_163657_1825556.dif' WITH  DIFFERENTIAL , NOFORMAT, NOINIT,  NAME = N'my_database_backup_2015_03_23_163657_1825556', SKIP, REWIND, NOUNLOAD,  STATS =
10
GO
declare @backupSetId as int
select @backupSetId = position from msdb..backupset where database_name=N'my_database' and backup_set_id=(select max(backup_set_id) from msdb..backupset where database_name=N'my_database' )
if @backupSetId is null begin raiserror(N'Verify failed. Backup information for database ''my_database'' not found.', 16, 1) end
RESTORE VERIFYONLY FROM  DISK = N'F:\Backup\Diff\my_database_backup_2015_03_23_163657_1825556.dif' WITH  FILE = @backupSetId,  NOUNLOAD,  NOREWIND
GO
Full: once weekly
BACKUP DATABASE [my_database] TO  DISK = N'F:\Backup\Full\my_database_backup_2015_03_23_164248_7765556.bak' WITH NOFORMAT, NOINIT,  NAME = N'my_database_backup_2015_03_23_164248_7765556', SKIP, REWIND, NOUNLOAD,  STATS = 10
GO
declare @backupSetId as int
select @backupSetId = position from msdb..backupset where database_name=N'my_database' and backup_set_id=(select max(backup_set_id) from msdb..backupset where database_name=N'my_database' )
if @backupSetId is null begin raiserror(N'Verify failed. Backup information for database ''my_database'' not found.', 16, 1) end
RESTORE VERIFYONLY FROM  DISK = N'F:\Backup\Full\my_database_backup_2015_03_23_164248_7765556.bak' WITH  FILE = @backupSetId,  NOUNLOAD,  NOREWIND
GO
As you can probably tell we are not doing anything special in the backups, they are simply built out in MSSQL Management Studio. All databases are set to full recovery mode. We do not rebuild indexes but do reorganize indexes once weekly and also update
statistics weekly.
Reorganize Indexes T-SQL (there are 255 indexes on this database)
USE [my_database]
GO
ALTER INDEX [IDX_index_name_0] ON [dbo].[table_name] REORGANIZE WITH ( LOB_COMPACTION = ON )
GO
Update Statistics T-SQL (there are 80 tables updated)
use [my_database]
GO
UPDATE STATISTICS [dbo].[table_name]
WITH FULLSCAN
GO
In a different post I saw a request to run the following query:
use msdb
go
select top 10 bf.physical_device_name, bs.database_creation_date,bs.type
from  dbo.backupset bs
inner join dbo.backupmediafamily bf on bf.media_set_id=bs.media_set_id
where   bs.database_name='my_database'
order by bs.database_creation_date
Results of query:
physical_device_name database_creation_date type
F:\Backup\Full\my_database_backup_2015_03_07_000006_2780149.bak 2014-02-08 21:14:36.000 D
F:\Backup\Diff\Pre_Upgrade_OE.dif 2014-02-08 21:14:36.000 I
F:\Backup\Diff\my_database_backup_2015_03_11_160430_7481022.dif 2015-03-07 02:58:26.000 I
F:\Backup\Full\my_database_backup_2015_03_11_160923_9651022.bak 2015-03-07 02:58:26.000 D
F:\Backup\Diff\my_database_backup_2015_03_11_162343_7071022.dif 2015-03-07 02:58:26.000 I
F:\Backup\TLog\my_database_backup_2015_03_11_162707_4781022.trn 2015-03-07 02:58:26.000 L
F:\Backup\TLog\my_database_backup_2015_03_11_164411_5825904.trn 2015-03-07 02:58:26.000 L
F:\Backup\TLog\my_database_backup_2015_03_11_200004_1011022.trn 2015-03-07 02:58:26.000 L
F:\Backup\TLog\my_database_backup_2015_03_12_000005_4201022.trn 2015-03-07 02:58:26.000 L
F:\Backup\Diff\my_database_backup_2015_03_12_000005_4441022.dif 2015-03-07 02:58:26.000 I
Is your field ready?

INIT basically intializes the backup file, in other words, it will overwrite the contents of the existing backup file with the new backup information. 
basically, what  you have now is you are appending all you backup files  (differentials) one after the other (like chain).
you do not necessarily have to do it.  these differential backups can exist as different files.
Infact, I would prefer them to separate, as it gives quick insight on the file, instead doing a  "restore filelist" command to read the contents of the backup file.
The point Shanky, was mentioning is that : he wants to make sure that you are not getting confused between the actual differential backup file size to the physicial file size(since you are appending the backups) example : if you differential backup is 2
gb, and over the next five you take a differential backup and append to a single file,like you are doing now,  the differential backup file size is 2gb but you physicial file size is 10Gb.  he is trying to make sure you are confused between these
two.
Anyways, did you get a chance to run the below query and also did you refer to the link I posted above. It talks a case when differential backups can be bigger than full backups and ' inex reorganize' or 'dbcc shrinks' can cause this. 
--backup size in GB
select database_name,backup_size/1024/1024/1024,Case WHEN type='D' then 'FULL'
WHEN type='L' then 'Log'
When type='I' then 'Differential' End as [BackupType],backup_start_date,backup_finish_date, datediff(minute,backup_start_date,backup_finish_date) as [BackupTime]
from msdb.dbo.backupset where database_name='mydatabase' and type in ('D','I')
order by backup_set_id desc
Hope it Helps!!

Similar Messages

  • When exporting to PDF, the pictures are not the same size I "placed" them

    I am "placing" pics that are 653 x 983 pixels, 300 DPI, using CS4.  However, my issue is when exporting to PDF, the PDF doesn't look like the same size I "placed" the pic until I blow it up to about 350%.  I do not have a printer set up to my computer so I can't do the print/pdf option.  Am I doing something wrong here?  I can't figure it out.  Your help is appreciated.  Thanks!

    Well, right when I open the PDF, it's just way too small, imagine it being the size of a business card.  I have to keep zooming in until it gets to the size I originally intended it to be.  When I create a new document am I suppose to make it the same size as the picture?

  • Are keys the same size regardless of the size of the MacBook Pro?

    My Caps Lock key bit the dust, so I was shopping for one on Ebay. I found plenty, but they always mention the size of the laptop it's coming off of. I'm assuming that the keys are the same size regardless of the size of the laptop, but I thought it would be prudent to check with you guys first. Thanks for your help.

    yes, they are all full size keyboards.

  • Backup failed . Make sure your computer and backup drive are on the same network. What does this mean?

    Backup Failed.  Comment is "Make sure your computer and backup disc are on the sme network and the backup disc is turned on".  What does this mean?

    Just back from the dentist.
    Did a hard reset and when i asked time capsule to do a backup it tells
    me
    "Time Machine could not complete the backup. The backup disk image is already in use"
    I think I misunderstand how this back up device works.
    Is it to be plugged into the back of the router with an ethernet cable?
    I have the Time capsule sitting beside my Imac.
    The cable modem and router are in another room
    I am new at this stuff.  Thank you for patience and help

  • How do I pull backup files (pictures) from another device to my new device, and merge multiple backups that are on the same iCloud account?  I have an iphone4 and iphone5 backup.  I want to pull photos from both into my new iPhone5

    Have multiple iPhone backups across 2 iPhones and 3 iPads.  I need to pull backup files and pictures off of backed up devices that are not my current in-use device.   How do I do that?  They are all under one apple ID.

    If you still have the devices, import them to your computer (see http://support.apple.com/kb/HT4083), then sync them to your current device.  If they are only stored in backups, the only way to access them is to restore the device to the entire backup.  Note: you can only restore photos in an iPhone backup to another iPhone, and from an iPad backup to another iPad.  If the backups are on your computer, you may be able to extract the photos from the backup using 3rd party software such as iPhone Backup Extractor.

  • Can't install PSE11 even though files are in the same folder

    I keep getting the error message that the files must be in the same folder and to download them. I've downloaded both items for windows and they're in the same folder yet I keep getting the error message. Help!

    JenniferRose05 please downloading Photoshop Elements 11 by following the directions listed at http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm l.  Please make sure to complete the Very Important Instructions prior to scrolling down the page and clicking on the download links.

  • I put one movie into the middle of another.  Now the inserted movie frames are not the same size as the other movie.  I can't find how to correct this.  Can someone help?

    Please help.

    If the two files do not have the same dimension you can adjust them via the Movie Properties window.
    When you add two files that don't have the same dimensions the default position for the added file is 0,0 (upper left corner).
    Open the Movie Properties window, single click on the video track you wish to adjust and then click the Visual Settings tab.
    You can then adjust the dimensions (to fit the other track) or the "offset" values to position it (inside or outside of the dimensions of the other track).

  • Wiped my computer, backed it up, and some files are not the same

    I was having some touchpad related issues so I took my macbook pro (late 2011) to the apple store. There they initiated a wipe after having told them that I used a portable external hard-drive to back up my documents. I used migration assistant and everything seems to have backed up fine except for this one document that has all my class notes. The last note I have recorded is from the 5th of March when I used that document up until March 19. Is there any way I can recover the file from that date? Any advice/help would be much appreciated.

    karenserjy1 wrote:
    Hi Ken
    Just to be clear what you are saying is put a test page live so it can be viewed online?
    You got it !  For the future, that's the best way we can see all your code and files.
    Since ther are no other links to the test page, the public won't stumble on it.
    Delete it once you have your answers.

  • Why are the backups to iCloud much smaller than those to my PC?  I subscribed to extra iCloud space expecting for the backups to be the same size.  Now I have more unused iCloud space I don't need, can I get a refund?

    Backups to my PC were almost 30 G bytes each time,  backup to the Icloud is only 1.4 G bytes.  Expecting the backups to be about the same size I subscribed to extra Icloud space.  Can I stop my Icloud pace subscription amd get a refund?  I have all this extra space and have no use for it.  It does not appear there is a way to use this space for other storage purposes.

    You can't merge iCloud backups.  You could create a current backup of your phone, then restore the backup of your old phone to it and save any data you want to keep, the restore it again to the current backup.  Some of your old recovered data could then be synced back to your new phone (such as photos), but other data cannot (such as text message conversations).  You may not want to save any of your old data but restoring the backup would be the only way to see what's there.

  • Every page in website is different even though they are the same size!  4 Views 0 Replies Latest reply: Sep 25, 2011 4:23 PM by kellynewmac     kellynewmac Level 1 (0 points) Sep 25, 2011 4:23 PM Can someone please tell me what I have done wrong ?

    Can someone please tell me what I have done wrong>?  Obviously I am new to iweb, and need help.  I recently built a website in iweb with only 5 pages, and I made the height, width, & all of the specs regarding the page size exactly the same, but they all load as different sizes on the website.  Also the text i typed loads right away, and the images take forever to load with each page when i look at it on a pc, and not mac.  Can someone please help me!!

    Obviously I am new to iweb, and need help.
    And one of your Services is Webdesign?
    Small consolation : iWeb is a very advanced piece of software. So advanced that even highly skilled professionals have difficulty understanding and using it.
    Anyway, your pages are NOT the same size by design. Which can clearly be seen. But also by checking the source of the pages.
    The Home page is 665px wide and the Contact page is 820px wide. That doesn't happen by magic. It's user induced.
    So do what I do : pay attention to every tiny detail. Especially when it's your business. No excuse.
    Here are some sample Sites :
         http://www.wyodor.net/mfi/
    You can download Domain files for your pleasure to study and use here :
         http://www.wyodor.net/mfi/Maaskant/How_To.html
         http://www.wyodor.net/mfi/size/768-946.html

  • Why are 720p videos the same size as 1080p videos in the iTunes store?

    Normally I rent standard definition videos from the iTunes store. They are around 1.3-2GB in size.
    Today I decided to download high definition! But I am confused by the description. Although the video is available in 720p & 1080 p, the size for HD is 5.14GB. Why haven't they mentioned two sizes for HD? And how come you can't choose ?
    In my preferences I have selected "prefer 720p", but if I have to download a file that is the same size regardless of 720p vs 1080p,  then I would rather download 1080p.

    I checked a few old films and Amazon's prices match iTunes:
    Oliver Twist (1948)
    iTunes Rent £2.49 Buy £9.99
    Amazon Rent £2.49 Buy £9.99 (or on DVD for £3.70)
    Oh, Mr. Porter (1937)
    iTunes Rent £2.49 Buy £7.99
    Amazon Buy only £7.99 (or on DVD for £4.10)
    The Scarlet Pimpernel (1934)
    iTunes Rent £2.49 Buy £4.99
    Amazon Rent £2.49 Buy 4.99
    A Tale of Two Cities (1935)
    iTunes Rent £2.49 Buy £9.99
    Amazon Rent £2.49 Buy £9.99
    excepting only that for some reason you can't rent Oh, Mr. Porter on Amazon. £9.99 does seem a little excessive for The Scarlet Pimpernel. I suppose it's a 'what the market can bear' calculation.
    Interestingly:
    La Dolce Vita
    iTunes SD Rent £3.49 Buy £9.99 (HD Rent £4.49 Buy £13.99)
    Not on Amazon except as a DVD £19.99 (of course it is a three hour film), but
    Curzon Cinema (not stated if SD or HD) Rent £2.00 no purchase.

  • Adjusting multiple images to be the same size?

    Hi,
    I'm trying to create a photo collage in Photoshop that consist of multiple photos imported as Smart Objects into layers, that are all the same size. Ideally, I'd like to be able size/crop/scale each image as a group, or individually, on the fly. So lets say that I have 6 images as Smart Objects on layers, and that they are all of varying sizes, and I'd like to adjust each image to be the same precise size, 2" x 3". Maybe later I decide that they should all be 2.5" x 3."5, can I easily change all 6 images at once? I've tried going into Free Transform and changing the size of each individual image here, but I can't get the precise size that I want. Is there a way that I can open a dialog box, and specify the exact size? Can I then repeat this for all images/layers that I've selected?
    I hope this makes sense, and that someone has a brilliant idea on how to do this?
    Thanks!
    Jeff

    Image Processor doesn't get me what I'm after.
    Photoshop has the option to create a contact sheet. So imagine that I want to create a contact sheet of images, but keep them on separate layers, and be able to change the size of the images as I feel, to fit my collage.

  • Is the original iPad wi fi the same size as the 3G model?

    I'm finding conflicting information on this ... A case I just ordered said it was for the iPad 3g and I have the wi fi model.

    I had one of each and they are exactly the same size.

  • Why don't the finder windows stay the same size?

    When I size a finder window (i.e. Pictures) they are never the same size the next time i open them, why?

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 10.0 r45
    Update the [[Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox
    http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • The ipad won't sync some photos, saying the file can't be read by the ipad, however it will sync some photos taken at the same time which are the same size and file type.  Why does it reject some and accept others?

    The ipad won't sync some photos, saying the file can't be read by the ipad, however it will sync some photos taken at the same time which are the same size and file type.  Why does it reject some and accept others?

    Hi there. I'm having the same problem: my iPad won't import some photos from a folder, saying that they can't be read. They are all JPEGS and some photos taken at the same time have synched fine, but out of a folder with 200 photos, it only lets me synch 37. I'm synching albums created via Photoshop Elements 6, which has worked fine until now.
    I've tried deleting all photos and re-synching, and have also deleted the iPod Photo Cache, but it hasn't made a difference.
    The iPad auto-updated to the latest version of iTunes, so maybe that's what's causing it?
    Any advice gratefully received!

Maybe you are looking for