Skip to Main Content

SQL Developer

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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Declarative query support does not currently include UNION, INTERSECT or MI

BDJul 26 2006 — edited Jul 26 2006
Hello,
I receive this message when I'm trying 'test syntax' in 'edit view': (however, the view seems to be working)

The SQL syntax is valid, however the query is invalid or uses functionality that is not supported.

Declarative query support does not currently include UNION, INTERSECT or MINUS


View:

SELECT
M.ID MID,
M.NAME M_NAME,
Z.ID,
Z.NAME ZONE_NAME
FROM
MESSAGE M, ZONE Z
WHERE
M.ID=Z.GOMESSAGEID(+)
UNION
SELECT
M.ID MID,
M.NAME M_NAME,
Z.ID,
Z.NAME ZONE_NAME
FROM
MESSAGE M, ZONE Z
WHERE
M.ID=Z.NOGOMESSAGEID(+)
(zone table has nullable go and no-go messageid columns)

Any suggestions?

(XE DB, SQL DEVELOPER 1.0.0.15 , WinXP SP2..)

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 23 2006
Added on Jul 26 2006
1 comment
861 views