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
Undocumented
AUTHID
DEFINER
Dependencies
ALL_OBJECTS
DBMS_ROW_CHANGE_TRACKING
ALL_TABLES
DBMS_STANDARD
DBMS_ASSERT
DUAL
Documented
No
Exceptions
Error Code
Reason
ORA-20000
Table <schema_name.table_name> does not have row change tracking enabled
The code at right is just a blind attempt to see if the result would provide useful information about this new package: It didn't.
The assumption made was UNAME is the user/schema name and TNAME is a heap table. Enabling ROW MOVEMENT did not alter the result.
dbms_row_change_tracking_int.reset_journal(
uname IN VARCHAR2,
tname IN VARCHAR2);
exec dbms_row_change_tracking_int.reset_journal('C##UWCLASS', 'TEST');
*
ERROR at line 1:
ORA-20000: Table C##UWCLASS.TEST does not have row change tracking enabled
ORA-06512: at "SYS.DBMS_ROW_CHANGE_TRACKING_INT", line 57
ORA-06512: at "SYS.DBMS_ROW_CHANGE_TRACKING_INT", line 100
ORA-06512: at line 1