I know that you can set user profiles or set a common timeout for the request.
But I want to set a timeout for a specific request inside the procedure and catch an exception, for example:
begin update tbl set col = v_val; --Unlimited time delete from tbl where id = 20; --Unlimited time begin delete from tbl; -- I want this to have a limited time to perform exception when (timeout???) then --code; end; end;
Is it possible? are there any timeout exceptions on all that i can catch? per block or request? did not find much information on this topic.
source share