Query a Quarantine Threshold

DECLARE
quarantine_config_setting_value VARCHAR2(30);

--
-- Query a Quarantine Threshold
--
 
BEGIN
    quarantine_config_setting_value := 
        DBMS_SQLQ.GET_PARAM_VALUE_QUARANTINE(
              QUARANTINE_NAME => '&SQL_QUARANTINE_NAME',
              PARAMETER_NAME  => 'CPU_TIME');
END;
/


Published 1st April 2022

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License