T-SQL的在执行普通的查询的时候是很高效的,但是在执行循环,判断这样的语句的时候效率就不那么的高了。------这里本人表示怀疑,毕竟注册过来程序集应该也是通过反射来加载,效率真的高吗?有待考证。但是无疑对于一些复杂逻辑是很有帮助的,比如说是否可以写个webservice调用的类库?呵呵,没试过,不保证能用。

这时可以借助CLR了,我们可以在SQL Server 2008中扩展C#程序来完成循环等过程式的查询,或者其他SQL不便实现的功能。这个随笔中将介绍在SQL Server中扩展C#程序实现正则表达式的替换功能。


  1. 新建一个类库程序命名为Regex,打开Visual Studio 2008,点击File,点击New,点击Project,在弹出的New Project对话框中选择Class Library,项目名称为Regex。
  2. 将项目中的类Class1命名为Regex,在这个类中写入如下代码:

[csharp]

​ view plain​

​copy​

​print​

​?​


  1. using System; 

using System; ​[csharp]

​ view plain​

​copy​

​print​

​?​


  1. using System.Collections.Generic; 

using System.Collections.Generic; ​[csharp]

​ view plain​

​copy​

​print​

​?​


  1. using System.Linq; 

using System.Linq; ​[csharp]

​ view plain​

​copy​

​print​

​?​


  1. using System.Text; 

using System.Text; ​[csharp]

​ view plain​

​copy​

​print​

​?​


  1. using System.Data.SqlTypes; 

using System.Data.SqlTypes; ​[csharp]

​ view plain​

​copy​

​print​

​?​


  1. using System.Text.RegularExpressions; 

using System.Text.RegularExpressions; ​[csharp]

​ view plain​

​copy​

​print​

​?​


  1. using Microsoft.SqlServer.Server; 

using Microsoft.SqlServer.Server; ​[csharp]

​ view plain​

​copy​

​print​

​?​


  1. namespace RegExp{     

namespace RegExp{ ​[csharp]

​ view plain​

​copy​

​print​

​?​


  1. public partial class RegExp    {         

public partial class RegExp { ​[csharp]

​ view plain​

​copy​

​print​

​?​


  1. [SqlFunction(IsDeterministic = true, DataAccess = DataAccessKind.None)]            

[SqlFunction(IsDeterministic = true, DataAccess = DataAccessKind.None)] ​[csharp]

​ view plain​

​copy​

​print​

​?​


  1. public static SqlString RegexReplace(SqlString input, SqlString pattern, SqlString replacement)         {             

public static SqlString RegexReplace(SqlString input, SqlString pattern, SqlString replacement) {

[csharp]​ ​​ view plain​​​ ​​​copy​​​ ​​​print​​​ ​​​?​

  1. return (SqlString)Regex.Replace(input.Value, pattern.Value, replacement.Value);         

return (SqlString)Regex.Replace(input.Value, pattern.Value, replacement.Value); ​[csharp]​ ​​ view plain​​​ ​​​copy​​​ ​​​print​​​ ​​​?​

} ​[csharp]​ ​​ view plain​​​ ​​​copy​​​ ​​​print​​​ ​​​?​

  1. }} 

}}

这个类中使用System.Text.RegularExpressions.Regex类中的Replace函数,这个在C#是常用的一个函数,使用正则表达式实现替换功能。编译这个类库项目生成RegExp.dll,这个在后面会用到的。

  • 下面打开SQL Server 2008的管理界面,我们需要把这个dll部署到数据库中,然后再注册一个方法,但是在这之前需要在SQL Server中开启CLR调用功能,运行下面的SQL 语句:

[sql]

​ view plain​

​copy​

​print​

​?​



  1. exec sp_configure 'clr enabled', 1; 
  2. reconfigure; 

exec sp_configure 'clr enabled', 1; reconfigure;

  • 运行下面的语句从这个dll中抽取中间语言(IL),如果你自己试验,注意修改dll文件存放路径。

[sql]

​ view plain​

​copy​

​print​

​?​


  1. use AdventureWorks; 

use AdventureWorks; ​[sql]

​ view plain​

​copy​

​print​

​?​


  1. create assembly RegExp from 'D:\MyProject\RegExp\RegExp\bin\Debug\RegExp.dll' 

create assembly RegExp from 'D:\MyProject\RegExp\RegExp\bin\Debug\RegExp.dll'

这个时候我们就可以在SQL Server中查看这个集合了,点击展开数据库AdventureWorks,点击展开Programmability,点击展开Assemblies就可以看到Regex,如下图1。

在SQL Server 2008中注册.net方法_input

图1

  1. create function dbo.RegexReplace( 
create function dbo.RegexReplace(
[sql]​ ​​ view plain​​ ​​copy​​ ​​print​​ ​​?​
  1. @input as nvarchar(max), 
@input as nvarchar(max),
[sql]​ ​​ view plain​​ ​​copy​​ ​​print​​ ​​?​
  1. @pattern as nvarchar(max), 
@pattern as nvarchar(max),
[sql]​ ​​ view plain​​ ​​copy​​ ​​print​​ ​​?​
  1. @replacement as nvarchar(max) 
@replacement as nvarchar(max)
[sql]​ ​​ view plain​​ ​​copy​​ ​​print​​ ​​?​
  1. returns nvarchar(max) 
returns nvarchar(max)
[sql]​ ​​ view plain​​ ​​copy​​ ​​print​​ ​​?​
  1. with returns null on null input 
with returns null on null input
[sql]​ ​​ view plain​​ ​​copy​​ ​​print​​ ​​?​
  1. external [RegExp].[RegExp.RegExp].[RegexReplace] 
external [RegExp].[RegExp.RegExp].[RegexReplace]
[sql]​ ​​ view plain​​ ​​copy​​ ​​print​​ ​​?​
  1. go 
go

注意:
a. 函数是returns而不是return,很容易弄错。
b.with returns null on null input意思是只要调用函数的时候任何一个参数为null,函数返回值将会是null。
c. 最后一句引用类库的格式,我本来以为[MyAssemblyName].[MyAssemblyName].[MyMethodName]就可以了,但是需要写成[MyAssemblyName]. [MyAssemblyName.MyClassName].[MyMethodName]这样才可以运行上面的语句,否则报错说找不到程序集中相关的类,至今不解,甚是迷惑。


现在我们就可以像其他的SQL函数一样来调用这个函数了,下面举一些调用的例子。

在SQL Server 2008中注册.net方法_input_02

这个很简单了,就是将China中的字母z替换成z。
在SQL Server 2008中注册.net方法_input_03

这个把运算符+替换成add。

在SQL Server 2008中注册.net方法_sql_04

这个就是那个语句WITH RETURNS NULL ON NULL INPUT的效果了。