Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 214 Oracle Analytics News
- 42 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations 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