Could not find stored procedure '%1'.

Error Message:
Msg 2812, Level 16, State 62, Line 1
Could not find stored procedure ‘%1’.

Severity level:
16.

Description:
This error message appears when you try to execute a stored procedure, which does not exist in the specified database.

Consequences:
The T-SQL statement can be parsed, but causes the error at runtime.

Resolution:
Error of the Severity level 16 are generated by the user and can be fixed by the SQL Server user. The stored procedure must exist in the specified database.

Versions:
All versions of SQL Server.

Example(s):
EXECUTE dbo.GetOrders

Remarks:
In the above example the error is raised, because the stored procedure dbo.GetOrders cannot be found in the Northwind database.

]]>

Leave a comment

Your email address will not be published.