I have below PLSQL Script where the PROC1 is invalid due to some reason(we are not discussing why) but PROC2 is valid.
Question: I want the script to run without any issue for at least PROC2? I want Valid PROC2 to be executed irrespective of invalid PROC 1.
BEGIN
PROC1; --This is due to x reason is invalid
PROC2;--This is valid.
END;