I just needed to double check if there is a limit of characters on EXEC command in t-sql? If I have a variable with varchar(max) and execute the command using EXEC, you reckon that would be ok?
thanks
|
I just needed to double check if there is a limit of characters on EXEC command in t-sql? If I have a variable with varchar(max) and execute the command using EXEC, you reckon that would be ok? thanks |
|||
|
|
|
Should be fine, according to this MSDN article. The relevant part:
|
|||
|
|