Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Oracle Lite - in line quiries

416931Mar 15 2004 — edited Mar 17 2004
9iLite 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.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 14 2004
Added on Mar 15 2004
5 comments
195 views