Created
March 22, 2020 21:40
-
-
Save zakriyarahman/d3c7f102d0c23f1310ff780673fb8673 to your computer and use it in GitHub Desktop.
Determine if a column needs indexing in a relational database.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Does the column have a particular set of specific values? Will the column have values that will occur more than once. | |
- Is the table a read intensive or write intensive. Does the table anticipate more read or write operations? | |
If a table is read intensive then it is possible for the column to be indexed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment