DB Index Flashcards
1
Q
What are pros and cons on an index?
A
Pros: The goal of creating an index on a table in a database is to make it faster to search through the table and find the row or rows that we want.
Cons:o The downside is that indexes make it slower to add rows or make updates to existing rows for that table since we not only have to write the data but also have to update the index.
2
Q
What is the difference between clustered ineex, unclustered index and heap ?
A
Just read the file if you don’t remmber