Hi Guys,
I have small query regarding the setting up the left outer join in RPD.
Suppose, I have a fact table (F1) and a dimension table (D1), I will have to define left outer join between F1 and D1. like:
select * from F1
left outer join D1 on
F1.Emp_ID=D1.Emp_ID
I could see three places where I can define the same.
1. I can add the Fact table into my Dimension Table LTS and set left out join.
2. I can add the Dimension table into my Fact Table LTS and set left out join.
3. While defining the Business join in BMM layer, there also same can be defined.
I would like to know, what is the difference between these three ways, any advantage or disadvantage if I am using any of it.