How to create CLR stored procedure with Nvarchar(max) parameter?

后端 未结 2 1813
长情又很酷
长情又很酷 2020-12-19 13:17

Is it possible to create CLR stored procedure in SQL Server CLR project having input parameterof type nvarchar(max)?

If you define stored procedure:

2条回答
  •  悲哀的现实
    2020-12-19 13:33

    Define your parameter to be of type SqlChars, instead of string. See Handling Large Object Parameters in the CLR

提交回复
热议问题