Предполагая следующее определение:Как вернуть nvarchar (max) в CLR UDF?
/// <summary>
/// Replaces each occurrence of sPattern in sInput with sReplace. This is done
/// with the CLR:
/// new RegEx(sPattern, RegexOptions.Multiline).Replace(sInput, sReplace).
/// The result of the replacement is the return value.
/// </summary>
[SqlFunction(IsDeterministic = true)]
public static SqlString FRegexReplace(string sInput, string sPattern,
string sReplace)
{
return new Regex(sPattern, RegexOptions.Multiline).Replace(sInput, sReplace);
}
Переходя к значению nvarchar(max)
для sInput
с длиной> 4000 приведет значение усекается (т.е. результат вызова этого UDF является nvarchar(4000)
, в отличие от nvarchar(max)
Вы - звезда, сэр :) – 2010-12-14 09:16:58