您现在的位置:主页 > 技术中心 > 数据库技术 > Sqlserver

SQLSERVER CLR无序自增(支持并发)性能对比

来源:未知 责任编辑:责任编辑 发表时间:2015-09-09 15:37 点击:

CLR函数脚本
---------------------------------------------------------------------------------
using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;
using System.Collections;
/// <summary>  www.2cto.com  
/// 用户自定CLR 函数,用来生成一个序列
/// </summary>
public partial class test
{
     
    public static Hashtable ht=new Hashtable(); //创建一个Hashtable实例
 
    [Microsoft.SqlServer.Server.SqlFunction]
    public static SqlInt64 GetRowNum(SqlGuid Guid1)
    {
        try
        {
            if (!ht.Contains(Guid1)) //判断哈希表是否包含特定键,其返回值为true或false
            {
                ht[Guid1] = 0;
            }
            Int64 i = Convert.ToInt64(ht[Guid1].ToString());
            i++;
            ht[Guid1] = i.ToString();
            return i;
        }
        catch
        {
            return -1;
        }
    }
    /// <summary>
    /// 删除哈希表值
    /// </summary>
    /// <param name="Guid1"></param>
    [Microsoft.SqlServer.Server.SqlProcedure ]
    public static void ClearGuid(SqlGuid Guid1)
    {  www.2cto.com  
        try
        {                 
            ht.Remove(Guid1);
            return ;
        }
        catch
        {
        }
    }
};
 
------------------------------------------------------------------------------------------------------------------------------
启动CLR
exec sp_configure 'show advanced options','1';
go
reconfigure  WITH OVERRIDE 
go
exec sp_configure 'clr enabled','1'
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
用户名: 验证码:点击我更换图片

推荐热点

  • sql常见面试题
  • SQL SERVER 2005性能之跟踪
  • SQL编程(一)
  • LINUX上RMAN自动备份脚本
  • sql server面试题
  • 浅谈SQL Server中的事务日志(三)----在简单恢复模式
  • SQL小技巧系列 --- 行转列合并
  • 如何将多个SQL查询统计结果一次显示出来
  • sql server 列转行
?? - ?? - ÝřŝžľŘÝź - TAGąęÇŠ - RSSśŠÔÄ - ??
Copyright © 2004-2024 上海卓卓网络科技有限公司