Justin Cooney
Web Development Tips and Examples
Category: Error Handling
-
This error showed up on a stored procedure that I was trying to execute from an ASP.NET Web page. The strange part was that I could execute the stored procedure directly from SSMS without any problems. The procedure was very simple in its design, but the database I was working in was new to me…
-
If you are working with XML data types in your .NET and SQL Server code, then you will most likely encounter this error message at some point. Specifically, this error is related to improperly passing an XML value as a SQLParameter to your database. Since most of the work one does with XML in .NET…
-
If you are working with ASP.NET in Visual Studio, then you may be mystified when you see an error code : Adding the specified count to the semaphore would cause it to exceed its maximum count. This error had me wondering what exactly is going on…