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
Defines the interfaces for the OLAP script procedures
dbms_aw_internal.eval_text_proc(
CMD IN VARCHAR2,
RET OUT VARCHAR2);
DECLARE
outVal dbms_id;
BEGIN
-- dbms_aw_internal.olap_script_start;
dbms_aw_internal.eval_text_proc('LIVE', outVal);
dbms_output.put_line(outVal);
END;
/
DECLARE
*
ERROR at line 1:
ORA-34492: Analytic workspace object LIVE does not exist.
ORA-06512: at "SYS.DBMS_AW_INTERNAL", line 54
ORA-06512: at "SYS.DBMS_AW_INTERNAL", line 65
ORA-06512: at line 4
dbms_aw_internal.olapi_run_dml(
command IN VARCHAR2
objprot IN BINARY_INTEGER);
exec dbms_aw_internal.olapi_run_dml('EXECUTE', 1);
BEGIN dbms_aw_internal.olapi_run_dml('EXECUTE', 1); END;
*
ERROR at line 1:
ORA-33776: EXECUTE is not a command.
ORA-06512: at "SYS.DBMS_AW_INTERNAL", line 28
ORA-06512: at line 1