SQL Azure and Indexes

前端 未结 2 2021
清酒与你
清酒与你 2021-02-15 09:21

is that true that SQL Azure rebuilds / reorganizes index automatically?

We have a database on Sql Azure and experiencing performance degradation and I suppose this is a

2条回答
  •  无人及你
    2021-02-15 09:54

    SQL Azure does not rebuild indexes automatically while the statistics are updated automatically. If you have a specific reason to force the rebuild it, you have to directly issue the command.

    This nice post helps you create a script to dynamically rebuild all indexes in a SQL Azure db.

提交回复
热议问题