SQL Server Error logs not optimally
What’s the SQL Server error log?
It’s a file used by SQL server to write data about events that occurred as backups, stack dumps, and a lot of other informational events.
Why should you care about it?
When the SQLError log gets too big, it’s harder to open them up. Therefore, you want the size to be kept smaller than bigger.
By the way, this check is a part of our SQL Server Health Check.
It’s easier for errors to “hide” bigger files.
Troubleshooting is crippled.
Having not enough error log files (configured to keep 7 log files, max available is 99) makes troubleshooting more difficult. Some data patterns cannot be found.
If you hit a problem, which requires multiple SQL Engine restarts or reboots, every time you do that, SQL will create a new ErrorLog file.
Since you only setup to keep six only, the oldest one gets deleted, which it can quickly delete files we needed for investigating or troubleshooting purposes.
How to fix it?
The solution is to recycle the ERRORLOG regularly and increase the number of files retained.
Set up to keep 99 SQL error log files.
- Open Management Studio (SSMS).
- Expand the instance, then Management, right-click on SQL Server Logs, and select Configure.
Figure 1 – SSMS – SQL Server Logs. - Enable Limit the number of error log files before they are recycled and then enter a value for the maximum number of error log files.
Figure 2 – Set Maximum number of error log files (I like to keep 99, max available).
Create a SQL Agent job to recycle the ErrorLog
Rotate Error Log every 24h or every 7days that way each day/week new file is created (best practices recommend to do this weekly).
You can use the script below to create the SQL Server Agent JOB.
- It will create a Job name ‘_Maint – SQL Error Log Cycle’. Alter the variable @Job_name if you wanna change it.
- The script will create a schedule to run nightly (Every Monday at 12:00AM). You can change the parameters for sp_add_jobschedule and schedule it to another date.
USE [msdb]
GO
BEGIN TRANSACTION
DECLARE @ReturnCode INT
SELECT @ReturnCode = 0
IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1)
BEGIN
EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]'
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
END
DECLARE @jobId BINARY(16)
EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'_Maint - SQL Error Log Cycle',
@enabled=1,
@notify_level_eventlog=0,
@notify_level_email=0,
@notify_level_netsend=0,
@notify_level_page=0,
@delete_level=0,
@description=N'Cycle SQL Error Log (daily), so files don''t grow too large.',
@category_name=N'[Uncategorized (Local)]',
@owner_login_name=N'sa', @job_id = @jobId OUTPUT
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'Cycle SQLError log',
@step_id=1,
@cmdexec_success_code=0,
@on_success_action=1,
@on_success_step_id=0,
@on_fail_action=2,
@on_fail_step_id=0,
@retry_attempts=0,
@retry_interval=0,
@os_run_priority=0, @subsystem=N'TSQL',
@command=N'EXEC sp_cycle_errorlog;',
@database_name=N'master',
@flags=0
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
DECLARE @mydate varchar(8)
SELECT @mydate = CONVERT(varchar(20), getdate(), 112)
EXEC @ReturnCode = msdb.dbo.sp_add_jobschedule @job_id=@jobId, @name=N'Run nightly',
@enabled=1,
@freq_type=8,
@freq_interval=2,
@freq_recurrence_factor=1,
@freq_subday_type=1,
@freq_subday_interval=0,
@freq_relative_interval=0,
@active_start_date=@mydate,
@active_end_date=99991231,
@active_start_time=0,
@active_end_time=235959--, @schedule_uid=N'ec6602b8-b42f-4ada-a9f5-5a72424206dc'
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)'
IF (@@ERROR <> 0 OR @ReturnCode <>; 0) GOTO QuitWithRollback
COMMIT TRANSACTION
GOTO EndSave
QuitWithRollback:
IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION
EndSave:
GO