Home
CREATE_TIMER should not be used
Rule description
- CREATE_TIMER should not be used
Non-compliant Code Example
DECLARE timer_id Timer;
one_minute NUMBER(5) := 10000;
BEGIN
timer_id := CREATE_TIMER ('customer_timer', one_minute, NO_REPEAT); --Non compliant code
END;