views:

231

answers:

1

What is the largest size text usable variable in a MSSQL Stored Procedure. I'm seeing that largest size you can use is a varchar(8000).

We can use ntext, text, etc. So does it require stitching varchars together?

What about if I used a CLR Stored Procedure??

+2  A: 

Have you tried nvarchar(max)?

Also, please state which version of SQL Server you're using.

John Saunders
Yeah, but nvarchar(max) is all International. :-)
John Saunders