方法 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)这下记到了吧

 

         

相关文章:

  • 2021-07-02
  • 2021-09-21
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
  • 2021-10-12
  • 2021-10-12
相关资源
相似解决方案