Oracle Lite - in line quiries
416931Mar 15 2004 — edited Mar 17 20049iLite 5.0.2.8
Do in-line queries work?
example
select level, a.col_a, b.col_b
from tab_A, (select col_b
from tab_c
where col_c = 1 ) b
where a.col_D = 1
start with a.col_a = 0
connect by b.col_b = prior a.col_a
We have more complex queries that work on an enterprise verison of the DB, but these sql statements all fail when executed on 9iLite.
Assuimg their are limitations to the complexity of
the sql that can run on 9iLite, is there a document
which hi-lites these limitations and possible work-arounds. I have read the SQL Reference for 9iLite - it documents what syntax is allowed very well.
I am suspecting that temporary objects in 9iLite sql may not be allowed.
Thanks in advance for any input.