Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果表是按索引组织的,有没有办法用 pl/sql 检查?
您可以将下面的脚本与USER_TABLES或ALL_TABELS结合起来调查所有表
SELECT 'IS_ORAGANIZED' FROM DUAL WHERE UPPER(DBMS_METADATA.GET_DDL('TABLE', 'tableName')) LIKE '%ORGANIZATION%';
解决方案:
SELECT IOT_TYPE FROM ALL_TABLES