8i | 9i | 10g | 11g | 12c | 13c | 18c | 19c | 21c | 23ai | Misc | PL/SQL | SQL | RAC | WebLogic | Linux
Script: table_indexes_ddl.sql
( Download Script )
-- ----------------------------------------------------------------------------------- -- File Name : https://oracle-base.com/dba/script_creation/table_indexes_ddl.sql -- Author : Tim Hall -- Description : Creates the index DDL for specified table, or all tables. -- Call Syntax : @table_indexes_ddl (schema-name) (table-name or all) -- Last Modified: 16/03/2013 - Rewritten to use DBMS_METADATA -- ----------------------------------------------------------------------------------- SET LONG 20000 LONGCHUNKSIZE 20000 PAGESIZE 0 LINESIZE 1000 FEEDBACK OFF VERIFY OFF TRIMSPOOL ON BEGIN DBMS_METADATA.set_transform_param (DBMS_METADATA.session_transform, 'SQLTERMINATOR', true); DBMS_METADATA.set_transform_param (DBMS_METADATA.session_transform, 'PRETTY', true); -- Uncomment the following lines if you need them. --DBMS_METADATA.set_transform_param (DBMS_METADATA.session_transform, 'SEGMENT_ATTRIBUTES', false); --DBMS_METADATA.set_transform_param (DBMS_METADATA.session_transform, 'STORAGE', false); END; / SELECT DBMS_METADATA.get_ddl ('INDEX', index_name, owner) FROM all_indexes WHERE owner = UPPER('&1') AND table_name = DECODE(UPPER('&2'), 'ALL', table_name, UPPER('&2')); SET PAGESIZE 14 LINESIZE 100 FEEDBACK ON VERIFY ON