In DB2, what is the difference between a clustered index and a non-clustered index?
- A clustered index is faster for read operations.
- A clustered index physically orders the data on disk.
- A non-clustered index does not affect the physical order of data.
- A non-clustered index is faster for write operations.
A clustered index physically reorders the rows in the table based on the index key, which means the rows are stored on disk in the same order as the index. This speeds up retrieval of data based on that index key but may slow down inserts and updates because the rows must be physically reordered. A non-clustered index does not change the physical order of the data on disk and thus doesn't affect insert or update performance, but may be slower for retrieval operations.
Loading...
Related Quiz
- In DB2, a view allows users to ________ data from one or more tables.
- Performance tuning capabilities in IBM Data Studio contribute to optimizing ________.
- Which aggregation function in DB2 is used to find the highest value in a column?
- Which of the following is a potential drawback of denormalization?
- The WITH ________ clause ensures that any data modification through the view meets specified criteria.