标签:style blog http io ar color os 使用 sp
原文:SQL点滴15—在SQL Server 2008中调用C#程序
T-SQL的在执行普通的查询的时候是很高效的,但是在执行循环,判断这样的语句的时候效率就不那么的高了。这时可以借助CLR了,我们可以在SQL Server 2008中扩展C#程序来完成循环等过程式的查询,或者其他SQL不便实现的功能。这个随笔中将介绍在SQL Server中扩展C#程序实现正则表达式的替换功能。
create function dbo.RegexReplace(
@input as nvarchar(max),
@pattern as nvarchar(max),
@replacement as nvarchar(max))
returns nvarchar(max)
with returns null on null input
external name [RegExp].[RegExp.RegExp].[RegexReplace]
go
SQL点滴15—在SQL Server 2008中调用C#程序
标签:style blog http io ar color os 使用 sp
原文地址:http://www.cnblogs.com/lonelyxmas/p/4140449.html