Write for Us
Error Message:Msg 8199, Level 16, State 1, Line 3In EXECUTE <procname>, procname can only be a literal or variable of type char, varchar, nchar, or nvarchar.
Severity level:16.
Description:This error message appears when you try to EXECUTE a variable, but this variable is not of one of the types listed in the error message.
Consequences:The SQL statement cannot be parsed and further execution is stopped.
Resolution:Errors of the Severity Level 16 are generated by the user and are corrigible by the user. The statement cannot be executed this way. The variable to be executed must be of a type listed in the error message.
Versions:All versions of SQL Server.
Example(s):DECLARE @i INTSET @i = 1EXECUTE @i
Remarks:In the above error message we try to execute a variable of the type INT. This raises the error.