this query work in SQL*plus
with C as (select * from emp)
select * from C
but not in PL/sql dev
but this one (very similar) yes
select * from (
with C as (select * from emp)
select * from C
)
I think it's a bug on factoring subquery handling.
I've just downloaded the last realease of pl/sql dev.
Do you have the same behavior ?
because I fear it was a NET8 issue ?
However in metalink someone got the same issue with TOAD.
Thanks,
Laurent
with C as (select * from emp)
select * from C
but not in PL/sql dev
but this one (very similar) yes
select * from (
with C as (select * from emp)
select * from C
)
I think it's a bug on factoring subquery handling.
I've just downloaded the last realease of pl/sql dev.
Do you have the same behavior ?
because I fear it was a NET8 issue ?
However in metalink someone got the same issue with TOAD.
Thanks,
Laurent