I tried to execute the following query to get the index counter from my schema.
select count(*) from USER_INDEXES; - who gave me the score 397
But select count(*) from ALL_INDEXES where table_owner ='MY_SCHEMA'; - gave me 357 .
What does that sound like? Should both be the same?
When checking with Oracle SQL developer by counting the indices themselves, give me 397
oracle
NaaN
source share