Question

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??

Was it helpful?

Solution

Have you tried nvarchar(max)?

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top