码迷,mamicode.com
首页 > 其他好文 > 详细

创建有序GUID

时间:2014-09-13 18:33:25      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   数据   div   问题   sp   log   

数据库中如果用GUID作主键(默认聚簇索引),会产生页面碎片,可以用UUID来解决这个问题:

 

        [DllImport("rpcrt4.dll", SetLastError = true)]
        private static extern int UuidCreateSequential(out Guid guid);
        /// <summary>
        /// 创建有序的 guid。
        /// </summary>
        /// <returns></returns>
        public static Guid CreateSequentialGuid()
        {
            Guid result;
            UuidCreateSequential(out result);
            return result;
        }

 

创建有序GUID

标签:style   blog   color   ar   数据   div   问题   sp   log   

原文地址:http://www.cnblogs.com/shi5588/p/3970054.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!