Which indexes on partitioned tables did i forgot to make local?
March 26th, 2008SELECT table_name
,index_name
FROM user_indexes
WHERE _name IN (SELECT table_name FROM user_part_tables)
AND partitioned = ‘NO’
(when having ORA-14075 then this little querie might help you find those global indexes on partitioned tables)
