Blog Post

SQL Server – List of all the Error codes or messages

,

Question:

I want list of all error codes & messages of SQL server.

Answer:

Once some ask this thing to you or this though comes to your mind, I am sure most of us will start goggling or looking into BOL for the details

But SQL server also Contains one row for each system error or warning that can be returned by Microsoft SQL Server.

You can get the List of all the Error codes or messages as

In SQL Server 2000

USE MASTER

GO

SELECT * FROM SYSMESSAGES

Column nameDescription
errorUnique error number.
severitySeverity level of the error.
dlevelFor internal use only.
descriptionExplanation of the error with placeholders for parameters.
mslangidSystem message group ID.

In SQL Server 2005 & above

USE MASTER

GO

SELECT * FROM SYS.MESSAGES

Column nameDescription
message_idID of the message. Is unique across server. Message IDs less than 50000 are system messages.
language_idLanguage ID for which the text in text is used, as defined in syslanguages. This is unique for a specified message_id.
severitySeverity level of the message, between 1 and 25. This is the same for all message languages within a message_id.
is_event_logged1 = Message is event-logged when an error is raised. This is the same for all message languages within a message_id.
textText of the message used when the corresponding language_id is active.

Rate

You rated this post out of 5. Change rating

Share

Share

Rate

You rated this post out of 5. Change rating