Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

T-SQL (varchar (max) vs CLR (stringa, SqlString, SqlChars)?

Quello che devi fare è aggiungere l'attributo SqlFacet(MaxSize =-1) al parametro:

[return: SqlFacet(MaxSize = -1)]
[Microsoft.SqlServer.Server.SqlFunction(IsDeterministic = true)]
public static SqlString YourSqlFunction([SqlFacet(MaxSize = -1)]SqlString sourceSS)
{ return new }