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
Real Application Security Validation Utilities
AUTHID
CURRENT_USER
Data Types
This is the table used to store the identified inconsistencies. The table will be truncated each time when a validation routine is called by user.
code The message code.
description The description of the identified inconsistency.
object The object where the inconsistency is identified.
The wholepath that leads to the object in the validation is recorded.
note Additional information that may help user to identify the
inconsistency.
*******************************************************************************/
CREATE GLOBAL TEMPORARY TABLE XS$VALIDATION_TABLE (
code NUMBER,
description VARCHAR2(4000),
object VARCHAR2(4000),
note VARCHAR2(4000))
ON COMMIT PRESERVE ROWS;