select owner, table_name, count(*)
from all_indexes
group by owner, table_name
having count(*) >= 5;
from all_indexes
group by owner, table_name
having count(*) >= 5;
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/31402276/viewspace-2128675/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/31402276/viewspace-2128675/