tips for optimizing a read-only sql database

后端 未结 7 2185

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:18

    For a read-only table, consider altering the indexes to use a fill factor of 100%.

    This will increase the amount of data on each data page. More data per page, fewer pages to read, less I/O, thus better performance.

    I like this option because it improves performance without code changes or table changes.

提交回复
热议问题