Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zakriyarahman/d3c7f102d0c23f1310ff780673fb8673 to your computer and use it in GitHub Desktop.
Save zakriyarahman/d3c7f102d0c23f1310ff780673fb8673 to your computer and use it in GitHub Desktop.
Determine if a column needs indexing in a relational database.
- 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