What are the disadvantages to Indexes in database tables?

前端 未结 2 749
伪装坚强ぢ
伪装坚强ぢ 2021-02-18 22:48

Is there any reason I shouldn\'t create an index for every one of my database tables, as a means of increasing performance? It would seem there must be some reason(s) else all t

相关标签:
2条回答
  • 2021-02-18 23:34

    One index on a table is not a big deal. You automatically have an index on columns (or combinations of columns) that are primary keys or declared as unique.

    There is some overhead to an index. The index itself occupies space on disk and memory (when used). So, if space or memory are issues then too many indexes could be a problem. When data is inserted/updated/deleted, then the index needs to be maintained as well as the original data. This slows down updates and locks the tables (or parts of the tables), which can affect query processing.

    A small number of indexes on each table are reasonable. These should be designed with the typical query load in mind. If you index every column in every table, then data modifications would slow down. If your data is static, then this is not an issue. However, eating up all the memory with indexes could be an issue.

    0 讨论(0)
  • 2021-02-18 23:35

    As a minimum I would normally recommend having at least 1 index per table, this would be automatically created on your tables primary key, for example an IDENTITY column. Then foreign keys would normally benefit from an index, this will need to be created manually. Other columns that are frequently included in WHERE clauses should be indexed, especially if they contain lots of unique values. The benefit of indexing columns, such as gender (low-cardinality) when this only has 2 values is debatable. Most of the tables in my databases have between 1 and 4 indexes, depending on the data in the table and how this data is retrieved.

    0 讨论(0)
提交回复
热议问题