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.
Returns a boolean corresponding with the input TRUE or FALSE string
dbms_sqltcb_internal.convert_to_boolean(bool IN VARCHAR2) RETURN BOOLEAN;
DECLARE
inVal VARCHAR2(5) := 'FALSE';
BEGIN
IF dbms_sqltcb_internal.i_convert_to_boolean(inVal) THEN
dbms_output.put_line('T');
ELSE
dbms_output.put_line('F');
END IF;
END;
/ F
dbms_sqltcb_internal.i_generate_sql_testcase(
directory IN VARCHAR2,
sql_stmt IN sys.sqlset_row,
incidentid IN VARCHAR2,
user_name IN VARCHAR2,
exec_user_id IN NUMBER,
task_name IN VARCHAR2,
exportenvironment IN BOOLEAN,
exportmetadata IN BOOLEAN,
exportdata IN BOOLEAN,
exportpkgbody IN BOOLEAN,
samplingpercent IN NUMBER,
timelimit IN NUMBER,
testcase_name IN VARCHAR2,
testcasemetadata IN OUT CLOB,
preserveschemamapping IN BOOLEAN,
version IN VARCHAR2,
ctrloptions IN VARCHAR2,
problem_type IN NUMBER);
dbms_sqltcb_internal.i_import_sql_testcase(
directory IN VARCHAR2,
sqltestcase IN CLOB,
importenvironment IN BOOLEAN,
importmetadata IN BOOLEAN,
importdata IN BOOLEAN,
importpkgbody IN BOOLEAN,
importdiagnosis IN BOOLEAN,
ignorestorage IN BOOLEAN,
ctrloptions IN VARCHAR2,
preserveschemamapping IN BOOLEAN);
dbms_sqltcb_internal.i_replay_sql_testcase(
directory IN VARCHAR2,
sqltestcase IN CLOB,
sql_stmt IN sys.sqlset_row,
ctrloptions IN VARCHAR2,
replmode IN VARCHAR2,
format IN VARCHAR2,
testcase_name IN VARCHAR2)
RETURN CLOB;