Reputation: 23443
What would be the difference between using USER_INDEXES
and USER_IND_COLUMNS
in retrieving indexing information?
Upvotes: 1
Views: 3516
Reputation: 132600
One describes the index itself, and the other describes the columns in that index. You need both to get the full picture.
Upvotes: 5
Reputation: 13583
USER_INDEXES is information about the index itself;
USER_IND_COLUMNS is information about the columns (or expressions) that the index consists of.
Upvotes: 3