Reports AIM task activity for given feature(s) within specified time interval
dbms_autoim.activity_report(
feature_id IN NUMBER := NULL,
start_time IN TIMESTAMP WITH TIME ZONE := NULL,
end_time IN TIMESTAMP WITH TIME ZONE := NULL,
type IN VARCHAR2 := 'TEXT', -- html, text, xml
level IN VARCHAR2 := 'BASIC') -- basic, detailed
RETURN CLOB;
Returns a configuration parameter for AIM features
dbms_autoim.get_parameter(
parameter_name IN VARCHAR2,
parameter_value OUT VARCHAR2);
DECLARE
outVal dbms_id;
BEGIN
dbms_autoim.get_parameter('AIM_TASK', outVal;
dbms_output.put_line(outVal);
END;
/
*
ORA-01422: exact fetch returned more than the requested number of rows (1)