Hi,
I am using OBI EE 11.1.1.7.0.
I have to build an Analysis where I need to display measurement values from two fact tables. SQL Query generated by Oracle BI uses a full outer join. Instead of this, I want a left outer join.
For example, Fact1 table has 10 rows. I want to display Fact1.MeasA. Fact2 table has 5 rows. I want to display Fact2.MeasB.
Now, Oracle BI is forcing a full outer join and fetching more than 50 rows.
What I want is fetch 10 rows from Fact1 and use the same dimension values to fetch data from Fact2 table. If no dimension value is found in Fact2, then Fact2.MeasB should display a null value. Ultimately, the Analysis should display only 10 rows rather than more than 10 rows (due to a full outer join).
Note: I am using conformed dimensions to start with.
Could you please suggest a way to achive this?
Thank you.
Regards,
Manoj.
Edit: Now, Oracle BI is forcing a full outer join and fetching 50 rows.