Why is my log file so massive? 22gb. I am running log backupsWhy Does the Transaction Log Keep Growing or Run Out of Space?Why Can't I shrink log file in full recovery modeSQL Server 2008 - Log file out of control & cant shrink itSql Server 2008 R2: Simple recovery model with transaction log backupsShrink log file after configuring backups properlyWhy is the transaction log file not truncated though its simple recovery model?Shrinking a physical transaction log file on a mirrored databasebackup log larger than log fileUnexpected Transaction Log Flush events and LOG_BACKUP errorsWhy Won't a Database Backup if the Log File is Full?LDF file size is very huge even after doing Transaction log backupLog file is growing up and is not releasing space

Why do we use polarized capacitors?

Does it makes sense to buy a new cycle to learn riding?

What do the Banks children have against barley water?

Re-submission of rejected manuscript without informing co-authors

Ideas for 3rd eye abilities

Was there ever an axiom rendered a theorem?

"My colleague's body is amazing"

Are white and non-white police officers equally likely to kill black suspects?

What does 'script /dev/null' do?

Where to refill my bottle in India?

Piano - What is the notation for a double stop where both notes in the double stop are different lengths?

Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?

COUNT(*) or MAX(id) - which is faster?

Are objects structures and/or vice versa?

Doomsday-clock for my fantasy planet

Patience, young "Padovan"

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?

Why do UK politicians seemingly ignore opinion polls on Brexit?

Can I find out the caloric content of bread by dehydrating it?

Copycat chess is back

Is it wise to focus on putting odd beats on left when playing double bass drums?

I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine

What to wear for invited talk in Canada

How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)



Why is my log file so massive? 22gb. I am running log backups


Why Does the Transaction Log Keep Growing or Run Out of Space?Why Can't I shrink log file in full recovery modeSQL Server 2008 - Log file out of control & cant shrink itSql Server 2008 R2: Simple recovery model with transaction log backupsShrink log file after configuring backups properlyWhy is the transaction log file not truncated though its simple recovery model?Shrinking a physical transaction log file on a mirrored databasebackup log larger than log fileUnexpected Transaction Log Flush events and LOG_BACKUP errorsWhy Won't a Database Backup if the Log File is Full?LDF file size is very huge even after doing Transaction log backupLog file is growing up and is not releasing space






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4















I can't seem to figure out the answer. I've seen multiple answers like this:
Why Does the Transaction Log Keep Growing or Run Out of Space?



and everyone talks about running back ups on your log file so it shrinks down. I am doing that, but it doesn't shrink anything! I also don't believe I am running any super long transactions.



Server: SQL Server 2008



Recovery Mode: Full



I have a maintenance plan to store 5 days worth of backups. Task 1 backups up the databases with Backup Type Full, Task 2 backs up Transaction logs. Verify backup integrity is checked on both tasks.



My DB's normal .ldf file is 22gb. When I run the above task, the .bak file is 435mb, but the .trn. file is 22gb, same as the ldf. And after successfully running the .ldf doesn't shrink at all, despite everything I've read telling me it should?



What is going on here and why doesn't the log file ever shrink?



I've also tried running this command as mentioned in another answer:



select name, log_reuse_wait_desc
from sys.databases



And it says LOG_BACKUP for the db with the huge log file.



Based on an answer below I am confusing allocated with used space. These are my stats for:



enter image description here



For reasons I have no clue why, the initial size was set to 22gb...










share|improve this question









New contributor




SventoryMang is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Transaction logs do not shrink automatically. Have you tried to shrink it?

    – Tony Hinkle
    9 hours ago











  • Doesn't it? How do you set that up via the UI interface? I didn't see that option on my task. But I have tried running it several times manually and it's still 22gb.

    – SventoryMang
    9 hours ago






  • 1





    I found the Shrink Database task. Added it to my maintenance plan, and re-ran it, still didn't shrink it anyway.

    – SventoryMang
    9 hours ago






  • 2





    everyone talks about running back ups on your log file so it shrinks down - no, nobody says that, and log backups will never shrink a file. They say running backups frequently should help prevent it from growing, since the space inside can be reused once it has been backed up. Sometimes the log space gets used faster than your backups run. If this happens often, shrinking just to grow again is pointless, just leave them large. If this is due to a known, abnormal event and you've put something in place to prevent it happening again, that is about the only time I would advocate any shrinking.

    – Aaron Bertrand
    5 hours ago






  • 1





    Be aware that everyone helping you is under the assumption that you have a legitimate reason to want full recovery mode. If your recovery point objective is at least 1 day, consider switching to simple recovery mode and omitting transaction log backups entirely (then shrinking your log backups once).

    – Brian
    4 hours ago


















4















I can't seem to figure out the answer. I've seen multiple answers like this:
Why Does the Transaction Log Keep Growing or Run Out of Space?



and everyone talks about running back ups on your log file so it shrinks down. I am doing that, but it doesn't shrink anything! I also don't believe I am running any super long transactions.



Server: SQL Server 2008



Recovery Mode: Full



I have a maintenance plan to store 5 days worth of backups. Task 1 backups up the databases with Backup Type Full, Task 2 backs up Transaction logs. Verify backup integrity is checked on both tasks.



My DB's normal .ldf file is 22gb. When I run the above task, the .bak file is 435mb, but the .trn. file is 22gb, same as the ldf. And after successfully running the .ldf doesn't shrink at all, despite everything I've read telling me it should?



What is going on here and why doesn't the log file ever shrink?



I've also tried running this command as mentioned in another answer:



select name, log_reuse_wait_desc
from sys.databases



And it says LOG_BACKUP for the db with the huge log file.



Based on an answer below I am confusing allocated with used space. These are my stats for:



enter image description here



For reasons I have no clue why, the initial size was set to 22gb...










share|improve this question









New contributor




SventoryMang is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Transaction logs do not shrink automatically. Have you tried to shrink it?

    – Tony Hinkle
    9 hours ago











  • Doesn't it? How do you set that up via the UI interface? I didn't see that option on my task. But I have tried running it several times manually and it's still 22gb.

    – SventoryMang
    9 hours ago






  • 1





    I found the Shrink Database task. Added it to my maintenance plan, and re-ran it, still didn't shrink it anyway.

    – SventoryMang
    9 hours ago






  • 2





    everyone talks about running back ups on your log file so it shrinks down - no, nobody says that, and log backups will never shrink a file. They say running backups frequently should help prevent it from growing, since the space inside can be reused once it has been backed up. Sometimes the log space gets used faster than your backups run. If this happens often, shrinking just to grow again is pointless, just leave them large. If this is due to a known, abnormal event and you've put something in place to prevent it happening again, that is about the only time I would advocate any shrinking.

    – Aaron Bertrand
    5 hours ago






  • 1





    Be aware that everyone helping you is under the assumption that you have a legitimate reason to want full recovery mode. If your recovery point objective is at least 1 day, consider switching to simple recovery mode and omitting transaction log backups entirely (then shrinking your log backups once).

    – Brian
    4 hours ago














4












4








4








I can't seem to figure out the answer. I've seen multiple answers like this:
Why Does the Transaction Log Keep Growing or Run Out of Space?



and everyone talks about running back ups on your log file so it shrinks down. I am doing that, but it doesn't shrink anything! I also don't believe I am running any super long transactions.



Server: SQL Server 2008



Recovery Mode: Full



I have a maintenance plan to store 5 days worth of backups. Task 1 backups up the databases with Backup Type Full, Task 2 backs up Transaction logs. Verify backup integrity is checked on both tasks.



My DB's normal .ldf file is 22gb. When I run the above task, the .bak file is 435mb, but the .trn. file is 22gb, same as the ldf. And after successfully running the .ldf doesn't shrink at all, despite everything I've read telling me it should?



What is going on here and why doesn't the log file ever shrink?



I've also tried running this command as mentioned in another answer:



select name, log_reuse_wait_desc
from sys.databases



And it says LOG_BACKUP for the db with the huge log file.



Based on an answer below I am confusing allocated with used space. These are my stats for:



enter image description here



For reasons I have no clue why, the initial size was set to 22gb...










share|improve this question









New contributor




SventoryMang is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I can't seem to figure out the answer. I've seen multiple answers like this:
Why Does the Transaction Log Keep Growing or Run Out of Space?



and everyone talks about running back ups on your log file so it shrinks down. I am doing that, but it doesn't shrink anything! I also don't believe I am running any super long transactions.



Server: SQL Server 2008



Recovery Mode: Full



I have a maintenance plan to store 5 days worth of backups. Task 1 backups up the databases with Backup Type Full, Task 2 backs up Transaction logs. Verify backup integrity is checked on both tasks.



My DB's normal .ldf file is 22gb. When I run the above task, the .bak file is 435mb, but the .trn. file is 22gb, same as the ldf. And after successfully running the .ldf doesn't shrink at all, despite everything I've read telling me it should?



What is going on here and why doesn't the log file ever shrink?



I've also tried running this command as mentioned in another answer:



select name, log_reuse_wait_desc
from sys.databases



And it says LOG_BACKUP for the db with the huge log file.



Based on an answer below I am confusing allocated with used space. These are my stats for:



enter image description here



For reasons I have no clue why, the initial size was set to 22gb...







sql-server sql-server-2008 backup transaction-log log






share|improve this question









New contributor




SventoryMang is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




SventoryMang is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 9 hours ago







SventoryMang













New contributor




SventoryMang is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 9 hours ago









SventoryMangSventoryMang

1265




1265




New contributor




SventoryMang is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





SventoryMang is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






SventoryMang is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • Transaction logs do not shrink automatically. Have you tried to shrink it?

    – Tony Hinkle
    9 hours ago











  • Doesn't it? How do you set that up via the UI interface? I didn't see that option on my task. But I have tried running it several times manually and it's still 22gb.

    – SventoryMang
    9 hours ago






  • 1





    I found the Shrink Database task. Added it to my maintenance plan, and re-ran it, still didn't shrink it anyway.

    – SventoryMang
    9 hours ago






  • 2





    everyone talks about running back ups on your log file so it shrinks down - no, nobody says that, and log backups will never shrink a file. They say running backups frequently should help prevent it from growing, since the space inside can be reused once it has been backed up. Sometimes the log space gets used faster than your backups run. If this happens often, shrinking just to grow again is pointless, just leave them large. If this is due to a known, abnormal event and you've put something in place to prevent it happening again, that is about the only time I would advocate any shrinking.

    – Aaron Bertrand
    5 hours ago






  • 1





    Be aware that everyone helping you is under the assumption that you have a legitimate reason to want full recovery mode. If your recovery point objective is at least 1 day, consider switching to simple recovery mode and omitting transaction log backups entirely (then shrinking your log backups once).

    – Brian
    4 hours ago


















  • Transaction logs do not shrink automatically. Have you tried to shrink it?

    – Tony Hinkle
    9 hours ago











  • Doesn't it? How do you set that up via the UI interface? I didn't see that option on my task. But I have tried running it several times manually and it's still 22gb.

    – SventoryMang
    9 hours ago






  • 1





    I found the Shrink Database task. Added it to my maintenance plan, and re-ran it, still didn't shrink it anyway.

    – SventoryMang
    9 hours ago






  • 2





    everyone talks about running back ups on your log file so it shrinks down - no, nobody says that, and log backups will never shrink a file. They say running backups frequently should help prevent it from growing, since the space inside can be reused once it has been backed up. Sometimes the log space gets used faster than your backups run. If this happens often, shrinking just to grow again is pointless, just leave them large. If this is due to a known, abnormal event and you've put something in place to prevent it happening again, that is about the only time I would advocate any shrinking.

    – Aaron Bertrand
    5 hours ago






  • 1





    Be aware that everyone helping you is under the assumption that you have a legitimate reason to want full recovery mode. If your recovery point objective is at least 1 day, consider switching to simple recovery mode and omitting transaction log backups entirely (then shrinking your log backups once).

    – Brian
    4 hours ago

















Transaction logs do not shrink automatically. Have you tried to shrink it?

– Tony Hinkle
9 hours ago





Transaction logs do not shrink automatically. Have you tried to shrink it?

– Tony Hinkle
9 hours ago













Doesn't it? How do you set that up via the UI interface? I didn't see that option on my task. But I have tried running it several times manually and it's still 22gb.

– SventoryMang
9 hours ago





Doesn't it? How do you set that up via the UI interface? I didn't see that option on my task. But I have tried running it several times manually and it's still 22gb.

– SventoryMang
9 hours ago




1




1





I found the Shrink Database task. Added it to my maintenance plan, and re-ran it, still didn't shrink it anyway.

– SventoryMang
9 hours ago





I found the Shrink Database task. Added it to my maintenance plan, and re-ran it, still didn't shrink it anyway.

– SventoryMang
9 hours ago




2




2





everyone talks about running back ups on your log file so it shrinks down - no, nobody says that, and log backups will never shrink a file. They say running backups frequently should help prevent it from growing, since the space inside can be reused once it has been backed up. Sometimes the log space gets used faster than your backups run. If this happens often, shrinking just to grow again is pointless, just leave them large. If this is due to a known, abnormal event and you've put something in place to prevent it happening again, that is about the only time I would advocate any shrinking.

– Aaron Bertrand
5 hours ago





everyone talks about running back ups on your log file so it shrinks down - no, nobody says that, and log backups will never shrink a file. They say running backups frequently should help prevent it from growing, since the space inside can be reused once it has been backed up. Sometimes the log space gets used faster than your backups run. If this happens often, shrinking just to grow again is pointless, just leave them large. If this is due to a known, abnormal event and you've put something in place to prevent it happening again, that is about the only time I would advocate any shrinking.

– Aaron Bertrand
5 hours ago




1




1





Be aware that everyone helping you is under the assumption that you have a legitimate reason to want full recovery mode. If your recovery point objective is at least 1 day, consider switching to simple recovery mode and omitting transaction log backups entirely (then shrinking your log backups once).

– Brian
4 hours ago






Be aware that everyone helping you is under the assumption that you have a legitimate reason to want full recovery mode. If your recovery point objective is at least 1 day, consider switching to simple recovery mode and omitting transaction log backups entirely (then shrinking your log backups once).

– Brian
4 hours ago











2 Answers
2






active

oldest

votes


















3














You are confusing allocated space with used space. After running the backup use this query to see the difference between allocated and used space.



select file_id
, type_desc
, name
, substring([physical_name],1,3) AS [Drive]
, physical_name
, state_desc
, size / 128 as 'AllocatedSizeMB'
, FILEPROPERTY([name],'SpaceUsed') /128 AS 'SpaceUsedMB' --Addapted from https://sqlperformance.com/2014/12/io-subsystem/proactive-sql-server-health-checks-1
, (1- (FILEPROPERTY([name],'SpaceUsed') / CAST (size AS MONEY))) *100 AS 'PercentFree'
, growth / 128 as 'GrowthSettingMB'

from sys.database_files
order by type_desc Desc, name


You can use the GUI to shrink the log file by changing the 'Initial size'



enter image description here



If you are having troubles shrinking the log, even when it looks mostly empty see my post here






share|improve this answer

























  • Wow the initial size was set to 21gb. I couldn't possibly imagine why. Is it possible for a log file to be "full" when it reaches the max size? Since I added the shrink task to my maintenance plan, it should presumably never be able to get to max size if I am running backups and shrinking often?

    – SventoryMang
    9 hours ago











  • Actaully I am trying to change it to 500mb and clicking okay and it's reverting back to 21gb.

    – SventoryMang
    8 hours ago











  • @SventoryMang Read the link at the last line of my answer.

    – James Jenkins
    8 hours ago






  • 5





    Please don't add shrink to your maintenance plan. If your log file hits a certain size, it will hit that size again under the same circumstances. Thus, shrinking introduces a performance cost (for the shrink and the regrow), but offers no long-term benefit. A one-time manual shrink to after increasing log file back-up frequency is OK, but shrinking log files as a maintenance task is not.

    – Brian
    7 hours ago


















5














Taking this backup will just backup the data and clear the log. The actual size of the log will need to be shrunk via a DBCC command if you really need to shrink the log. Depending on how often you are backing up your log file it will likely just grow again.



Try running this to see how much actual space on your log is taken up.



SELECT 
[TYPE] = A.TYPE_DESC
,[FILE_Name] = A.name
,[FILEGROUP_NAME] = fg.name
,[File_Location] = A.PHYSICAL_NAME
,[FILESIZE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0)
,[USEDSPACE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0 - ((SIZE/128.0) - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0))
,[FREESPACE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0 - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0)
,[FREESPACE_%] = CONVERT(DECIMAL(10,2),((A.SIZE/128.0 - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0)/(A.SIZE/128.0))*100)
,[AutoGrow] = 'By ' + CASE is_percent_growth WHEN 0 THEN CAST(growth/128 AS VARCHAR(10)) + ' MB -'
WHEN 1 THEN CAST(growth AS VARCHAR(10)) + '% -' ELSE '' END
+ CASE max_size WHEN 0 THEN 'DISABLED' WHEN -1 THEN ' Unrestricted'
ELSE ' Restricted to ' + CAST(max_size/(128*1024) AS VARCHAR(10)) + ' GB' END
+ CASE is_percent_growth WHEN 1 THEN ' [autogrowth by percent, BAD setting!]' ELSE '' END
FROM sys.database_files A LEFT JOIN sys.filegroups fg ON A.data_space_id = fg.data_space_id
order by A.TYPE desc, A.NAME;


If you actually have loads of free space available you can run the DBCC SHRINKFILE command in order to get your log file down to whichever size you think it should be.



Edit: You may also want to check DBCC LOGINFO; then you can see any items that are in use by your transaction log file as they will have a status of two.



HOWEVER whatever activity caused you log file to grow in the first place is likely to continue to happen. From the sounds of thinks you're only taking one log backup a day.



What you should be doing is taking multiple log backups throughout the day in between your full database backups. I'd likely recommend starting with hourly and adjust to see ultimately what works best for you. You can either continue doing this via maintenance plans if that's what's comfortable for you. Other wise you could use Ola Hallengren's scripts to set up a maintenance plan. There are a lot of different options to go with and for the most part they're all pretty great as long as you're taking frequent backups.






share|improve this answer

























  • +1 for CASE is_percent_growth WHEN 1 THEN ' [autogrowth by percent, BAD setting!]

    – James Jenkins
    8 hours ago











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "182"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);






SventoryMang is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f234221%2fwhy-is-my-log-file-so-massive-22gb-i-am-running-log-backups%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









3














You are confusing allocated space with used space. After running the backup use this query to see the difference between allocated and used space.



select file_id
, type_desc
, name
, substring([physical_name],1,3) AS [Drive]
, physical_name
, state_desc
, size / 128 as 'AllocatedSizeMB'
, FILEPROPERTY([name],'SpaceUsed') /128 AS 'SpaceUsedMB' --Addapted from https://sqlperformance.com/2014/12/io-subsystem/proactive-sql-server-health-checks-1
, (1- (FILEPROPERTY([name],'SpaceUsed') / CAST (size AS MONEY))) *100 AS 'PercentFree'
, growth / 128 as 'GrowthSettingMB'

from sys.database_files
order by type_desc Desc, name


You can use the GUI to shrink the log file by changing the 'Initial size'



enter image description here



If you are having troubles shrinking the log, even when it looks mostly empty see my post here






share|improve this answer

























  • Wow the initial size was set to 21gb. I couldn't possibly imagine why. Is it possible for a log file to be "full" when it reaches the max size? Since I added the shrink task to my maintenance plan, it should presumably never be able to get to max size if I am running backups and shrinking often?

    – SventoryMang
    9 hours ago











  • Actaully I am trying to change it to 500mb and clicking okay and it's reverting back to 21gb.

    – SventoryMang
    8 hours ago











  • @SventoryMang Read the link at the last line of my answer.

    – James Jenkins
    8 hours ago






  • 5





    Please don't add shrink to your maintenance plan. If your log file hits a certain size, it will hit that size again under the same circumstances. Thus, shrinking introduces a performance cost (for the shrink and the regrow), but offers no long-term benefit. A one-time manual shrink to after increasing log file back-up frequency is OK, but shrinking log files as a maintenance task is not.

    – Brian
    7 hours ago















3














You are confusing allocated space with used space. After running the backup use this query to see the difference between allocated and used space.



select file_id
, type_desc
, name
, substring([physical_name],1,3) AS [Drive]
, physical_name
, state_desc
, size / 128 as 'AllocatedSizeMB'
, FILEPROPERTY([name],'SpaceUsed') /128 AS 'SpaceUsedMB' --Addapted from https://sqlperformance.com/2014/12/io-subsystem/proactive-sql-server-health-checks-1
, (1- (FILEPROPERTY([name],'SpaceUsed') / CAST (size AS MONEY))) *100 AS 'PercentFree'
, growth / 128 as 'GrowthSettingMB'

from sys.database_files
order by type_desc Desc, name


You can use the GUI to shrink the log file by changing the 'Initial size'



enter image description here



If you are having troubles shrinking the log, even when it looks mostly empty see my post here






share|improve this answer

























  • Wow the initial size was set to 21gb. I couldn't possibly imagine why. Is it possible for a log file to be "full" when it reaches the max size? Since I added the shrink task to my maintenance plan, it should presumably never be able to get to max size if I am running backups and shrinking often?

    – SventoryMang
    9 hours ago











  • Actaully I am trying to change it to 500mb and clicking okay and it's reverting back to 21gb.

    – SventoryMang
    8 hours ago











  • @SventoryMang Read the link at the last line of my answer.

    – James Jenkins
    8 hours ago






  • 5





    Please don't add shrink to your maintenance plan. If your log file hits a certain size, it will hit that size again under the same circumstances. Thus, shrinking introduces a performance cost (for the shrink and the regrow), but offers no long-term benefit. A one-time manual shrink to after increasing log file back-up frequency is OK, but shrinking log files as a maintenance task is not.

    – Brian
    7 hours ago













3












3








3







You are confusing allocated space with used space. After running the backup use this query to see the difference between allocated and used space.



select file_id
, type_desc
, name
, substring([physical_name],1,3) AS [Drive]
, physical_name
, state_desc
, size / 128 as 'AllocatedSizeMB'
, FILEPROPERTY([name],'SpaceUsed') /128 AS 'SpaceUsedMB' --Addapted from https://sqlperformance.com/2014/12/io-subsystem/proactive-sql-server-health-checks-1
, (1- (FILEPROPERTY([name],'SpaceUsed') / CAST (size AS MONEY))) *100 AS 'PercentFree'
, growth / 128 as 'GrowthSettingMB'

from sys.database_files
order by type_desc Desc, name


You can use the GUI to shrink the log file by changing the 'Initial size'



enter image description here



If you are having troubles shrinking the log, even when it looks mostly empty see my post here






share|improve this answer















You are confusing allocated space with used space. After running the backup use this query to see the difference between allocated and used space.



select file_id
, type_desc
, name
, substring([physical_name],1,3) AS [Drive]
, physical_name
, state_desc
, size / 128 as 'AllocatedSizeMB'
, FILEPROPERTY([name],'SpaceUsed') /128 AS 'SpaceUsedMB' --Addapted from https://sqlperformance.com/2014/12/io-subsystem/proactive-sql-server-health-checks-1
, (1- (FILEPROPERTY([name],'SpaceUsed') / CAST (size AS MONEY))) *100 AS 'PercentFree'
, growth / 128 as 'GrowthSettingMB'

from sys.database_files
order by type_desc Desc, name


You can use the GUI to shrink the log file by changing the 'Initial size'



enter image description here



If you are having troubles shrinking the log, even when it looks mostly empty see my post here







share|improve this answer














share|improve this answer



share|improve this answer








edited 9 hours ago

























answered 9 hours ago









James JenkinsJames Jenkins

2,10022045




2,10022045












  • Wow the initial size was set to 21gb. I couldn't possibly imagine why. Is it possible for a log file to be "full" when it reaches the max size? Since I added the shrink task to my maintenance plan, it should presumably never be able to get to max size if I am running backups and shrinking often?

    – SventoryMang
    9 hours ago











  • Actaully I am trying to change it to 500mb and clicking okay and it's reverting back to 21gb.

    – SventoryMang
    8 hours ago











  • @SventoryMang Read the link at the last line of my answer.

    – James Jenkins
    8 hours ago






  • 5





    Please don't add shrink to your maintenance plan. If your log file hits a certain size, it will hit that size again under the same circumstances. Thus, shrinking introduces a performance cost (for the shrink and the regrow), but offers no long-term benefit. A one-time manual shrink to after increasing log file back-up frequency is OK, but shrinking log files as a maintenance task is not.

    – Brian
    7 hours ago

















  • Wow the initial size was set to 21gb. I couldn't possibly imagine why. Is it possible for a log file to be "full" when it reaches the max size? Since I added the shrink task to my maintenance plan, it should presumably never be able to get to max size if I am running backups and shrinking often?

    – SventoryMang
    9 hours ago











  • Actaully I am trying to change it to 500mb and clicking okay and it's reverting back to 21gb.

    – SventoryMang
    8 hours ago











  • @SventoryMang Read the link at the last line of my answer.

    – James Jenkins
    8 hours ago






  • 5





    Please don't add shrink to your maintenance plan. If your log file hits a certain size, it will hit that size again under the same circumstances. Thus, shrinking introduces a performance cost (for the shrink and the regrow), but offers no long-term benefit. A one-time manual shrink to after increasing log file back-up frequency is OK, but shrinking log files as a maintenance task is not.

    – Brian
    7 hours ago
















Wow the initial size was set to 21gb. I couldn't possibly imagine why. Is it possible for a log file to be "full" when it reaches the max size? Since I added the shrink task to my maintenance plan, it should presumably never be able to get to max size if I am running backups and shrinking often?

– SventoryMang
9 hours ago





Wow the initial size was set to 21gb. I couldn't possibly imagine why. Is it possible for a log file to be "full" when it reaches the max size? Since I added the shrink task to my maintenance plan, it should presumably never be able to get to max size if I am running backups and shrinking often?

– SventoryMang
9 hours ago













Actaully I am trying to change it to 500mb and clicking okay and it's reverting back to 21gb.

– SventoryMang
8 hours ago





Actaully I am trying to change it to 500mb and clicking okay and it's reverting back to 21gb.

– SventoryMang
8 hours ago













@SventoryMang Read the link at the last line of my answer.

– James Jenkins
8 hours ago





@SventoryMang Read the link at the last line of my answer.

– James Jenkins
8 hours ago




5




5





Please don't add shrink to your maintenance plan. If your log file hits a certain size, it will hit that size again under the same circumstances. Thus, shrinking introduces a performance cost (for the shrink and the regrow), but offers no long-term benefit. A one-time manual shrink to after increasing log file back-up frequency is OK, but shrinking log files as a maintenance task is not.

– Brian
7 hours ago





Please don't add shrink to your maintenance plan. If your log file hits a certain size, it will hit that size again under the same circumstances. Thus, shrinking introduces a performance cost (for the shrink and the regrow), but offers no long-term benefit. A one-time manual shrink to after increasing log file back-up frequency is OK, but shrinking log files as a maintenance task is not.

– Brian
7 hours ago













5














Taking this backup will just backup the data and clear the log. The actual size of the log will need to be shrunk via a DBCC command if you really need to shrink the log. Depending on how often you are backing up your log file it will likely just grow again.



Try running this to see how much actual space on your log is taken up.



SELECT 
[TYPE] = A.TYPE_DESC
,[FILE_Name] = A.name
,[FILEGROUP_NAME] = fg.name
,[File_Location] = A.PHYSICAL_NAME
,[FILESIZE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0)
,[USEDSPACE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0 - ((SIZE/128.0) - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0))
,[FREESPACE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0 - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0)
,[FREESPACE_%] = CONVERT(DECIMAL(10,2),((A.SIZE/128.0 - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0)/(A.SIZE/128.0))*100)
,[AutoGrow] = 'By ' + CASE is_percent_growth WHEN 0 THEN CAST(growth/128 AS VARCHAR(10)) + ' MB -'
WHEN 1 THEN CAST(growth AS VARCHAR(10)) + '% -' ELSE '' END
+ CASE max_size WHEN 0 THEN 'DISABLED' WHEN -1 THEN ' Unrestricted'
ELSE ' Restricted to ' + CAST(max_size/(128*1024) AS VARCHAR(10)) + ' GB' END
+ CASE is_percent_growth WHEN 1 THEN ' [autogrowth by percent, BAD setting!]' ELSE '' END
FROM sys.database_files A LEFT JOIN sys.filegroups fg ON A.data_space_id = fg.data_space_id
order by A.TYPE desc, A.NAME;


If you actually have loads of free space available you can run the DBCC SHRINKFILE command in order to get your log file down to whichever size you think it should be.



Edit: You may also want to check DBCC LOGINFO; then you can see any items that are in use by your transaction log file as they will have a status of two.



HOWEVER whatever activity caused you log file to grow in the first place is likely to continue to happen. From the sounds of thinks you're only taking one log backup a day.



What you should be doing is taking multiple log backups throughout the day in between your full database backups. I'd likely recommend starting with hourly and adjust to see ultimately what works best for you. You can either continue doing this via maintenance plans if that's what's comfortable for you. Other wise you could use Ola Hallengren's scripts to set up a maintenance plan. There are a lot of different options to go with and for the most part they're all pretty great as long as you're taking frequent backups.






share|improve this answer

























  • +1 for CASE is_percent_growth WHEN 1 THEN ' [autogrowth by percent, BAD setting!]

    – James Jenkins
    8 hours ago















5














Taking this backup will just backup the data and clear the log. The actual size of the log will need to be shrunk via a DBCC command if you really need to shrink the log. Depending on how often you are backing up your log file it will likely just grow again.



Try running this to see how much actual space on your log is taken up.



SELECT 
[TYPE] = A.TYPE_DESC
,[FILE_Name] = A.name
,[FILEGROUP_NAME] = fg.name
,[File_Location] = A.PHYSICAL_NAME
,[FILESIZE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0)
,[USEDSPACE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0 - ((SIZE/128.0) - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0))
,[FREESPACE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0 - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0)
,[FREESPACE_%] = CONVERT(DECIMAL(10,2),((A.SIZE/128.0 - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0)/(A.SIZE/128.0))*100)
,[AutoGrow] = 'By ' + CASE is_percent_growth WHEN 0 THEN CAST(growth/128 AS VARCHAR(10)) + ' MB -'
WHEN 1 THEN CAST(growth AS VARCHAR(10)) + '% -' ELSE '' END
+ CASE max_size WHEN 0 THEN 'DISABLED' WHEN -1 THEN ' Unrestricted'
ELSE ' Restricted to ' + CAST(max_size/(128*1024) AS VARCHAR(10)) + ' GB' END
+ CASE is_percent_growth WHEN 1 THEN ' [autogrowth by percent, BAD setting!]' ELSE '' END
FROM sys.database_files A LEFT JOIN sys.filegroups fg ON A.data_space_id = fg.data_space_id
order by A.TYPE desc, A.NAME;


If you actually have loads of free space available you can run the DBCC SHRINKFILE command in order to get your log file down to whichever size you think it should be.



Edit: You may also want to check DBCC LOGINFO; then you can see any items that are in use by your transaction log file as they will have a status of two.



HOWEVER whatever activity caused you log file to grow in the first place is likely to continue to happen. From the sounds of thinks you're only taking one log backup a day.



What you should be doing is taking multiple log backups throughout the day in between your full database backups. I'd likely recommend starting with hourly and adjust to see ultimately what works best for you. You can either continue doing this via maintenance plans if that's what's comfortable for you. Other wise you could use Ola Hallengren's scripts to set up a maintenance plan. There are a lot of different options to go with and for the most part they're all pretty great as long as you're taking frequent backups.






share|improve this answer

























  • +1 for CASE is_percent_growth WHEN 1 THEN ' [autogrowth by percent, BAD setting!]

    – James Jenkins
    8 hours ago













5












5








5







Taking this backup will just backup the data and clear the log. The actual size of the log will need to be shrunk via a DBCC command if you really need to shrink the log. Depending on how often you are backing up your log file it will likely just grow again.



Try running this to see how much actual space on your log is taken up.



SELECT 
[TYPE] = A.TYPE_DESC
,[FILE_Name] = A.name
,[FILEGROUP_NAME] = fg.name
,[File_Location] = A.PHYSICAL_NAME
,[FILESIZE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0)
,[USEDSPACE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0 - ((SIZE/128.0) - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0))
,[FREESPACE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0 - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0)
,[FREESPACE_%] = CONVERT(DECIMAL(10,2),((A.SIZE/128.0 - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0)/(A.SIZE/128.0))*100)
,[AutoGrow] = 'By ' + CASE is_percent_growth WHEN 0 THEN CAST(growth/128 AS VARCHAR(10)) + ' MB -'
WHEN 1 THEN CAST(growth AS VARCHAR(10)) + '% -' ELSE '' END
+ CASE max_size WHEN 0 THEN 'DISABLED' WHEN -1 THEN ' Unrestricted'
ELSE ' Restricted to ' + CAST(max_size/(128*1024) AS VARCHAR(10)) + ' GB' END
+ CASE is_percent_growth WHEN 1 THEN ' [autogrowth by percent, BAD setting!]' ELSE '' END
FROM sys.database_files A LEFT JOIN sys.filegroups fg ON A.data_space_id = fg.data_space_id
order by A.TYPE desc, A.NAME;


If you actually have loads of free space available you can run the DBCC SHRINKFILE command in order to get your log file down to whichever size you think it should be.



Edit: You may also want to check DBCC LOGINFO; then you can see any items that are in use by your transaction log file as they will have a status of two.



HOWEVER whatever activity caused you log file to grow in the first place is likely to continue to happen. From the sounds of thinks you're only taking one log backup a day.



What you should be doing is taking multiple log backups throughout the day in between your full database backups. I'd likely recommend starting with hourly and adjust to see ultimately what works best for you. You can either continue doing this via maintenance plans if that's what's comfortable for you. Other wise you could use Ola Hallengren's scripts to set up a maintenance plan. There are a lot of different options to go with and for the most part they're all pretty great as long as you're taking frequent backups.






share|improve this answer















Taking this backup will just backup the data and clear the log. The actual size of the log will need to be shrunk via a DBCC command if you really need to shrink the log. Depending on how often you are backing up your log file it will likely just grow again.



Try running this to see how much actual space on your log is taken up.



SELECT 
[TYPE] = A.TYPE_DESC
,[FILE_Name] = A.name
,[FILEGROUP_NAME] = fg.name
,[File_Location] = A.PHYSICAL_NAME
,[FILESIZE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0)
,[USEDSPACE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0 - ((SIZE/128.0) - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0))
,[FREESPACE_MB] = CONVERT(DECIMAL(10,2),A.SIZE/128.0 - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0)
,[FREESPACE_%] = CONVERT(DECIMAL(10,2),((A.SIZE/128.0 - CAST(FILEPROPERTY(A.NAME, 'SPACEUSED') AS INT)/128.0)/(A.SIZE/128.0))*100)
,[AutoGrow] = 'By ' + CASE is_percent_growth WHEN 0 THEN CAST(growth/128 AS VARCHAR(10)) + ' MB -'
WHEN 1 THEN CAST(growth AS VARCHAR(10)) + '% -' ELSE '' END
+ CASE max_size WHEN 0 THEN 'DISABLED' WHEN -1 THEN ' Unrestricted'
ELSE ' Restricted to ' + CAST(max_size/(128*1024) AS VARCHAR(10)) + ' GB' END
+ CASE is_percent_growth WHEN 1 THEN ' [autogrowth by percent, BAD setting!]' ELSE '' END
FROM sys.database_files A LEFT JOIN sys.filegroups fg ON A.data_space_id = fg.data_space_id
order by A.TYPE desc, A.NAME;


If you actually have loads of free space available you can run the DBCC SHRINKFILE command in order to get your log file down to whichever size you think it should be.



Edit: You may also want to check DBCC LOGINFO; then you can see any items that are in use by your transaction log file as they will have a status of two.



HOWEVER whatever activity caused you log file to grow in the first place is likely to continue to happen. From the sounds of thinks you're only taking one log backup a day.



What you should be doing is taking multiple log backups throughout the day in between your full database backups. I'd likely recommend starting with hourly and adjust to see ultimately what works best for you. You can either continue doing this via maintenance plans if that's what's comfortable for you. Other wise you could use Ola Hallengren's scripts to set up a maintenance plan. There are a lot of different options to go with and for the most part they're all pretty great as long as you're taking frequent backups.







share|improve this answer














share|improve this answer



share|improve this answer








edited 8 hours ago

























answered 9 hours ago









ZaneZane

2,76221842




2,76221842












  • +1 for CASE is_percent_growth WHEN 1 THEN ' [autogrowth by percent, BAD setting!]

    – James Jenkins
    8 hours ago

















  • +1 for CASE is_percent_growth WHEN 1 THEN ' [autogrowth by percent, BAD setting!]

    – James Jenkins
    8 hours ago
















+1 for CASE is_percent_growth WHEN 1 THEN ' [autogrowth by percent, BAD setting!]

– James Jenkins
8 hours ago





+1 for CASE is_percent_growth WHEN 1 THEN ' [autogrowth by percent, BAD setting!]

– James Jenkins
8 hours ago










SventoryMang is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















SventoryMang is a new contributor. Be nice, and check out our Code of Conduct.












SventoryMang is a new contributor. Be nice, and check out our Code of Conduct.











SventoryMang is a new contributor. Be nice, and check out our Code of Conduct.














Thanks for contributing an answer to Database Administrators Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f234221%2fwhy-is-my-log-file-so-massive-22gb-i-am-running-log-backups%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to create a command for the “strange m” symbol in latex? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)How do you make your own symbol when Detexify fails?Writing bold small caps with mathpazo packageplus-minus symbol with parenthesis around the minus signGreek character in Beamer document titleHow to create dashed right arrow over symbol?Currency symbol: Turkish LiraDouble prec as a single symbol?Plus Sign Too Big; How to Call adfbullet?Is there a TeX macro for three-legged pi?How do I get my integral-like symbol to align like the integral?How to selectively substitute a letter with another symbol representing the same letterHow do I generate a less than symbol and vertical bar that are the same height?

Българска екзархия Съдържание История | Български екзарси | Вижте също | Външни препратки | Литература | Бележки | НавигацияУстав за управлението на българската екзархия. Цариград, 1870Слово на Ловешкия митрополит Иларион при откриването на Българския народен събор в Цариград на 23. II. 1870 г.Българската правда и гръцката кривда. От С. М. (= Софийски Мелетий). Цариград, 1872Предстоятели на Българската екзархияПодмененият ВеликденИнформационна агенция „Фокус“Димитър Ризов. Българите в техните исторически, етнографически и политически граници (Атлас съдържащ 40 карти). Berlin, Königliche Hoflithographie, Hof-Buch- und -Steindruckerei Wilhelm Greve, 1917Report of the International Commission to Inquire into the Causes and Conduct of the Balkan Wars

Чепеларе Съдържание География | История | Население | Спортни и природни забележителности | Културни и исторически обекти | Религии | Обществени институции | Известни личности | Редовни събития | Галерия | Източници | Литература | Външни препратки | Навигация41°43′23.99″ с. ш. 24°41′09.99″ и. д. / 41.723333° с. ш. 24.686111° и. д.*ЧепелареЧепеларски Linux fest 2002Начало на Зимен сезон 2005/06Национални хайдушки празници „Капитан Петко Войвода“Град ЧепелареЧепеларе – народният ски курортbgrod.orgwww.terranatura.hit.bgСправка за населението на гр. Исперих, общ. Исперих, обл. РазградМузей на родопския карстМузей на спорта и скитеЧепеларебългарскибългарскианглийскитукИстория на градаСки писти в ЧепелареВремето в ЧепелареРадио и телевизия в ЧепелареЧепеларе мами с родопски чар и добри пистиЕвтин туризъм и снежни атракции в ЧепелареМестоположениеИнформация и снимки от музея на родопския карст3D панорами от ЧепелареЧепелареррр