Hi Guys, first of all let me say the "PL/SQL Dev version 10" is amazing!
At our IT department we are trying to put in place a development model that separates the ownership of the data model to the ownership of the pl/sql development.
We reached a good point but we miss one important thing...
Hi,
when within a Package I write the WITH select clause instantly disappear the procedure (or function) list on the left.
For example, my pkg have within own body this select:
select column_a
into var_a
from table a
where column_b=column_c;
If I change my conde to:
with sel_X as...