I am trying to right-click a stored procedure in SQL Server Management Studio 2012 and try to execute a stored procedure that takes a single parameter of type tblType_XXX , which is a Custom Table Type . But when I try to pass a single value, I get this error
Msg 206, Level 16, State 2, Procedure uspGetXXXXXXXX, Line 0 Operand type clash: int is incompatible with tblType_XXX
How can I specify a parameter of type tblType_XXX in SQL Server Management Studio - tblType_XXX stored procedure from the user interface?
tblType_XXX contains only one int column
Rwiti source share