You can recycle the SQL Error Logs without restarting the SQL service by using either of these 2 commands:
1 2 3 4 5 6 7 8 9 10 |
USE master; GO -- system sproc EXEC SP_CYCLE_ERRORLOG; -- or -- DBCC command DBCC ERRORLOG; |
Views – 1754