标签:使用 ar sp c on r bs sql table
方法 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)这下记到了吧
标签:使用 ar sp c on r bs sql table
原文地址:http://www.cnblogs.com/JiangLe/p/4007108.html