I’m always asking myself should I create an index or not in my Oracle tables, what criteria in a table makes the index worth creating? And is it also a criteria in the query? And are there (with respect to Oracle) different kinds of indexes you can create based on some factor(s)?
Share
It’s all about what queries are going to run against the table, how fast they’re going to be, how fast you need them to be and how often they’re going to be run. If you need to be able to find records quickly based on it, index it.