方法 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)这下记到了吧
2022-10-15 11:37:49
方法 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)这下记到了吧