Categories
- All Categories
- Oracle Analytics and AI Learning Hub
- 34 Oracle Analytics and AI Sharing Center
- 20 Oracle Analytics and AI Lounge
- 272 Oracle Analytics and AI News
- 48 Oracle Analytics and AI Videos
- 16.2K Oracle Analytics and AI Forums
- 6.3K Oracle Analytics and AI Idea Labs
- Oracle Analytics and AI User Groups
- 99 Oracle Analytics and AI Trainings
- 16 Oracle Analytics and AI Challenge
- Find Partners
- For Partners
Getting error : ORA-01719: outer join operator (+) not allowed in operand of OR or IN
We encountered an error with the following query:
AND ((items.inventory_item_id is not null
AND items.inventory_item_id = sod.inventory_item_id(+))
OR items.inventory_item_id is null)
As Oracle Database 19.25 now adheres to the ANSI standard, which prohibits the use of partial outer joins with the ORand IN operators, we updated the query as follows:
AND ((items.inventory_item_id is not null
AND items.inventory_item_id = sod.inventory_item_id(+))
OR items.inventory_item_id(+) is null)
The change is as per example shared to us
However, we are still getting the same error. Can someone please help.
Thanks!
Answers
-
Hi,
Your request isn't about Publisher, but is a SQL question. You should consider posting in forums dedicated to that, for example .
Also, did you check ?
0

