tips for optimizing a read-only sql database

后端 未结 7 2130

I have a mid-sized SQL Server 2008 database that has actuarial data in it. All of the use cases for it are read-only queries. Are there any special optimizations I should cons

7条回答
  •  有刺的猬
    2021-02-08 11:25

    If it is read only, one thing that you can do is put indexes on just about anything that might help (space permitting). Normally adding an index is a trade-off between a performance hit to writes and a performance gain for reads. If you get rid of the writes it's no longer a trade-off.

    When you load the database you would want to drop all/most of the indexes, perform the load, then put the indexes back on the tables.

提交回复
热议问题