18

We are running out of space. What is the safe way to clear the error log?

What is the safe way to clear this?

Thomas Stringer
  • 42,434
  • 9
  • 120
  • 155
aron
  • 595
  • 2
  • 6
  • 8

1 Answers1

21

You can cycle the error log by calling sp_cycle_errorlog and then that will close the current error log and cycle the log extensions. Basically, it'll create a new error log file that SQL Server will be hitting. Then the archived error log(s) can be treated accordingly (delete/move with caution). This will not technically "truncate" the log, it'll just roll it over and you can handle the old logs as you so please, like any other file system file.

When you do this, you should see a new log file with an entry that resembles the following:

The error log has been reinitialized. See the previous log for older entries.

BOL reference on sp_cycle_errorlog

Thomas Stringer
  • 42,434
  • 9
  • 120
  • 155