ACE Director Alum Daniel Morgan, founder of Morgan's Library, is scheduling
complimentary technical Workshops on Database Security for the first 30
Oracle Database customers located anywhere in North America, EMEA, LATAM, or
APAC that send an email to
asra_us@oracle.com. Request a Workshop for
your organization today.
Purpose
Support for partitioned tables with APIs for management and maintenance activities
Gathers the list of global indexes where optimized asynchronous index maintenance has taken place to clean up entries pointing to data segments that no longer exist
dbms_part.cleanup_gidx(
schema_name_in IN VARCHAR2 DEFAULT NULL,
table_name_in IN VARCHAR2 DEFAULT NULL);
exec dbms_part.cleanup_gidx;
*
ERROR at line 1:
ORA-20000: No gloabl index segments were cleaned
ORA-06512: at "SYS.DBMS_PART", line 139
ORA-06512: at "SYS.DBMS_PART", line 193
ORA-06512: at line 1
-- SR 3-7561290501 submitted for misspelling, spelling is correct in 21c as shown below
Undocumented but appears to be the core code called by CLEANUP_GIDX only having additional granularity.
dbms_part.cleanup_gidx_internal(
schema_name_in IN VARCHAR2 DEFAULT NULL,
table_name_in IN VARCHAR2 DEFAULT NULL,
orphans_only_in IN INTEGER DEFAULT 1,
noop_ok_in IN NUMBER);
conn sys@pdbdev as sysdba
exec dbms_part.cleanup_gidx('SH', 'SALES', 0);
*
ERROR at line 1:
ORA-20000: No global index segments were cleaned
ORA-06512: at "SYS.DBMS_PART", line 226
ORA-06512: at "SYS.DBMS_PART", line 291
ORA-06512: at line 1