T-Sql|sqlserver 执行正则表达式,调用c# 函数、代码
--1.新建SqlServerExt项目,编写 C# 方法生成 SqlServerExt.dll 文件
using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using System.Text.RegularExpressions;
using Microsoft.SqlServer.Server;
namespace Ext
{
public static partial class DataBase
{
///
/// 正则表达式
///
/// 【T-Sql|sqlserver 执行正则表达式,调用c# 函数、代码】输入字符
/// 正则表达式
///
[Microsoft.SqlServer.Server.SqlFunction]
public static SqlBoolean Regex(SqlChars input, SqlString pattern)
{
try
{
Regex regex = new Regex(pattern.Value);
return new SqlBoolean(regex.IsMatch(new string(input.Value)));
}
catch
{
return new SqlBoolean(false);
}
}
}
}
--2.在SqlServer 中注册程序集
CREATE ASSEMBLY Udf
FROM 'D:\.......\SqlServerExt.dll'
WITH PERMISSION_SET = SAFE;
--2.1 删除已注册的程序集 Udf
--DROP ASSEMBLY Udf;
--3.创建一个sql 函数
CREATE FUNCTION Regex
(
@input NVARCHAR(4000) ,
@pattern nvarchar(4000)
)
RETURNS bit
AS
EXTERNAL NAME [Udf].[Ext.DataBase].[Regex] ;
--EXTERNAL NAME [Sql中程序集名].[C#命名空间.C#类名].[C#方法名]
--3.1 删除函数
--DROP FUNCTION Regex;
--4.测试正则
--4.1 匹配所有数字
select dbo.regex('123asd123','^\d+$');
select dbo.regex('123000123','^\d+$');
--4.2 查询mytable表中mycol字段中,包含所有数字的记录
select top 10 * from [mytable] where dbo.regex([mycol],'^\d+$');
--5.执行 自定义函数异常时
--消息 6263,级别 16,状态 1,第 2 行
--禁止在 .NET Framework 中执行用户代码。启用 "clr enabled" 配置选项。
/*
--出现如下提示时,执行下方代码
--消息 6263,级别 16,状态 1,第 2 行
--禁止在 .NET Framework 中执行用户代码。启用 "clr enabled" 配置选项。
exec sp_configure 'show advanced options', '1';
go
reconfigure;
go
exec sp_configure 'clr enabled', '1'
go
reconfigure;
exec sp_configure 'show advanced options', '1';
go
*/
推荐阅读
- CVE-2020-16898|CVE-2020-16898 TCP/IP远程代码执行漏洞
- 字符串拼接成段落,换行符(\n)如何只执行n-1次
- R语言|R语言 函数
- SqlServer|sql server的UPDLOCK、HOLDLOCK试验
- 高效执行力第六课-小结
- 成功通航(用宜搭提升数字化管理效能,确保每次飞行任务安全执行)
- @逆战千锋|@逆战千锋 为什么sql语句执行之后表单中没有数据
- Spring|Spring Aop常见注解与执行顺序详解
- 什么叫思辨的执行
- 创建、执行存储过程