great information Gustavo. I am not that familiar with pl/sql so I will fix things up that way to get it started.
having said that, what would I need to do, to make this not an 'anonymous block'?
Trying to setup a debug session with pl/sql debugger and I'm having some trouble.
First, I bring up the test window, then I put a simple select * from mytable; statement in after the begin statement so that my code looks like this
declare
i integer;
begin
SELECT * FROM mytable;
end;
Then...