List of SQL error codes
-
Hi guys, does anyone know where i can get a list of mssql error codes. i need to enumerate the errors and treat anyone specifically. For ex: if it generates a unique key violation or foreign key violation, i could work on that. Thanx.
He who goes for revenge must first dig two graves.
-
Hi guys, does anyone know where i can get a list of mssql error codes. i need to enumerate the errors and treat anyone specifically. For ex: if it generates a unique key violation or foreign key violation, i could work on that. Thanx.
He who goes for revenge must first dig two graves.
Following links will be useful for error codes. For MS SQL Error codes http://msdn.microsoft.com/en-us/library/ms165727(SQL.90).aspx[^] For Error and Event Codes of any product of microsoft http://www.microsoft.com/technet/support/ee/ee_advanced.aspx[^] Hope this will help!
Jinal Desai
-
Hi guys, does anyone know where i can get a list of mssql error codes. i need to enumerate the errors and treat anyone specifically. For ex: if it generates a unique key violation or foreign key violation, i could work on that. Thanx.
He who goes for revenge must first dig two graves.
I've had to do that, but I handle only the ones I've actually encountered, not all of them. My DatabaseAccessor[^] article contains my SqlServerErrorInfo.cs and DatabaseException.cs files which may be of use to you.