Index are created on table or view that provides a fast way of retrieving the data based on the defined columns.

These keys (Clustered or Non-clustered) are in B-tree level structures to easily find the rows associated with the key column values quickly.

>Manually index your foreign keys with nonclustered indexes

Only after these steps are done then you can consider adding index. Make sure to understand the ACTUAL workload as well as query properties.

> By duration and IO 

> Review cumulative costs of frequently executed queries.

> Evaluate the impact to OLTP as a wider indexes are added

> Evaluate disk/memory costs for wider indexes 

> Remove duplicate indexes.

> Consider removal or consolidation of redundant indexes.

> Analyze index fragmentation. (Use limited scan "No need for sampled or detailed".)

> Deal with statistics appropriately:

Only after these steps are done then you can consider adding index. Make sure to understand the ACTUAL workload as well as query properties.

Fragmentation depends on many factors:

> INDEX REBUILD WITH (ONLINE=ON)

> INDEX REORGANIZE (always ONLINE)


---DMV Don't tell everything --- 

> Included Columns of filtered index

> sp_helpindex does not show these columns

> Seeks (singleton lookup or range scan)

> Scans (like "select")

> Lookups (bookmark lookup)

> Updates (insert, update & delete)

 --- What could happen if you falsely remove the index ---


> user_seeks, user_scans

> last_user_seek and last_user_scan are both datetime

> avg_total_user_cost - higher cost determines w/c are costly to the system

> avg_user_impact - improvement percentage when you add the index