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.
Submits an advisor task for to be executed. This is not something easily demonstrated so the demo at the right is for education purposes only and will return the exceptions shown unless the advisor task exists.
prvt_uadv.execute(task_id IN BINARY_INTEGER);
exec prvt_uadv.execute(562);
BEGIN prvt_uadv.execute(562); END;
*
ERROR at line 1:
ORA-13605: The specified task or object 562 does not exist for the current user.
ORA-06512: at "SYS.PRVT_UADV", line 9
ORA-06512: at line 1
DECLARE
outVal BOOLEAN;
BEGIN
prvt_uadv.is_autotune_enabled(outVal);
IF outVal THEN
dbms_output.put_line('Enabled');
ELSE
dbms_output.put_line('Disabled');
END IF;
END;
/ Enabled