There is a column in all_indexes called join_index. I have looked up the meaning of this but I still don't understand what it means.
I noticed that all our indexes say NO in this column. Can somebody explain the implications of this column. Thank you.
select
ind.table_name,
ind.index_name,
uniqueness,
distinct_keys,
num_rows,
join_index
from sys.all_indexes ind
where ind.owner = 'CLARITY'
I noticed that all our indexes say NO in this column. Can somebody explain the implications of this column. Thank you.
select
ind.table_name,
ind.index_name,
uniqueness,
distinct_keys,
num_rows,
join_index
from sys.all_indexes ind
where ind.owner = 'CLARITY'