I have 2 Dimension tables, one view and one fact table. The dimension tables are fund and task.
Earlier the view table was joined to task and fund table.
View.Fundl = Fund.Fundl
View.Program = Task.Taskl
I am trying to change these joins to go through the fact table and still get the same result. I have modified these joins in the following manner.
Fact.Fundl = Fund.Fundl
Fact.Taskl = Task.Taskl
Fact.Fundl = View.Fundl
Fact.Taskl = View.Program.
Can anyone tell me if these joins will lead to the same result. If no, what would be the best way to get the same result if we have to go through the fact table.
Thanks
Earlier the view table was joined to task and fund table.
View.Fundl = Fund.Fundl
View.Program = Task.Taskl
I am trying to change these joins to go through the fact table and still get the same result. I have modified these joins in the following manner.
Fact.Fundl = Fund.Fundl
Fact.Taskl = Task.Taskl
Fact.Fundl = View.Fundl
Fact.Taskl = View.Program.
Can anyone tell me if these joins will lead to the same result. If no, what would be the best way to get the same result if we have to go through the fact table.
Thanks