首页 > 数据库技术 > 详细

SQL Server 提高创建索引速度的 2 个方法

时间:2014-10-05 16:57:28      阅读:322      评论:0      收藏:0      [点我收藏+]

 

方法 1、

         使用tempdb来提速

         create index index_name on table_name (column_list) with(sort_in_tempdb = on);

方法 2、

         使用多线程为来提速

         create index index_name on table_name (column_list) with(maxdop = 4);

         maxdop ( max dgree of parallelism)这下记到了吧

 

         

SQL Server 提高创建索引速度的 2 个方法

原文:http://www.cnblogs.com/JiangLe/p/4007108.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!