Stew Stryker
Member³
I just upgraded and I'm seeing something very strange when I try to run an anonymous block from w/in a SQL window. If that anon block has a local procedure or function defined in it, it will NOT run!
Gives error like:
I know I used to be able to run these in a SQL window. Now it will only run (and give output) in a Test Window.
Is this a feature or a bug?
Here's a quicky sample of what fails.
What's up with this???
Stew
Gives error like:
Code:
ORA00103 - encounterd the symbol "end-of-file" when expecting one of the following:
; return
Is this a feature or a bug?
Here's a quicky sample of what fails.
Code:
DECLARE
PROCEDURE get_sample_id_pf_total_life IS
BEGIN
NULL;
END get_sample_id_pf_total_life;
BEGIN
dbms_output.put_line('test');
END;
Stew