In this article let us understand the system stored procedure Sp_readerrorlog in detail. Sp_readerrorlog is a system stored procedure which can be used to read the SQL Server error logs from within T-SQL.
Syntax of sp_readerrorlog
Parameter 1 : Non zero integer value
Parameter 2 : File name
Parameter 3 : Line number in the file
Parameter 4 : Search string
1. Code snippet to display the content of the current event log
Execute sp_readerrorlog
2. Code snippet to display the content of eventlog.1
EXEC sp_readerrorlog 1, 'C:\Program Files\Microsoft SQL Server\MSSQL$Velias\log\ERRORLOG.1'
Or
EXEC sp_readerrorlog 1
3. Code snippet to search a string --Would search the second row of the specified text file for the number 2000.
EXEC sp_readerrorlog 1, 'C:\SendToTextFile.txt',2, '2000'
Yep you got it right ... this system stored proc can be used not only on log file but on any file (as shown in the above code snippet).
Script to import the SQL Error Logs, format the results and then allow querying using TSQL: http://www.replicationanswers.com/Downloads/ErrorLogs.txt
Syntax of sp_readerrorlog
Parameter 1 : Non zero integer value
Parameter 2 : File name
Parameter 3 : Line number in the file
Parameter 4 : Search string
1. Code snippet to display the content of the current event log
Execute sp_readerrorlog
2. Code snippet to display the content of eventlog.1
EXEC sp_readerrorlog 1, 'C:\Program Files\Microsoft SQL Server\MSSQL$Velias\log\ERRORLOG.1'
Or
EXEC sp_readerrorlog 1
3. Code snippet to search a string --Would search the second row of the specified text file for the number 2000.
EXEC sp_readerrorlog 1, 'C:\SendToTextFile.txt',2, '2000'
Yep you got it right ... this system stored proc can be used not only on log file but on any file (as shown in the above code snippet).
Script to import the SQL Error Logs, format the results and then allow querying using TSQL: http://www.replicationanswers.com/Downloads/ErrorLogs.txt
Comments
Nice blog Vadivel.
The code given in the below link throws an error.
http://www.replicationanswers.com/Downloads/ErrorLogs.txt
Error description:
Msg 8114, Level 16, State 5, Procedure sp_readerrorlog, Line 0
Error converting data type varchar to int.
The problem is with the passed parameter to the sp_readerrorlog procedure, The second parameter should be an integer.Correct me if am wrong.
Thanks,
Aljo
As you have rightly pointed out in SQL Server 2005 the 2nd param got to be INT only.