Categories
- All Categories
- Oracle Analytics and AI Learning Hub
- 52 Oracle Analytics and AI Sharing Center
- 19 Oracle Analytics and AI Lounge
- 288 Oracle Analytics and AI News
- 57 Oracle Analytics and AI Videos
- 16.3K Oracle Analytics and AI Forums
- 6.5K Oracle Analytics and AI Labs
- Oracle Analytics and AI User Groups
- 111 Oracle Analytics and AI Trainings
- 21 Oracle Analytics and AI Challenge
- Find Partners
- For Partners
OBIEE 12c Logical SQL with Factor query
Does anyone knows how to write logical SQL with factor query in OBIEE 12c? I couldn't find any documentation from the website. If you have experiences on that, would you please share with me? Thank you very much?
Answers
-
Can you please post some example of "Factor Query", please?
0 -
Thanks SonPat99, here is an example from https://asktom.oracle.com/pls/asktom/f?p=100:11:::::P11_QUESTION_ID:4274185613870
select
parentid, childid,
decode( (select itemType from items where itemid =
itemsets.childid),
'S', to_number(NULL),
(select exp(sum(ln(is2.factor))) from itemsets is2
start with is2.childid = itemsets.childid
connect by prior is2.parentid = is2.childid ) ) factor2
from itemsets
start with parentid = 'BIKE'
connect by prior childid = parentid;
0