Hi All,
I have a business scenario where i want to map a fact table with a dimension table.
The dimension table SK needs to be mapped to the fact table FK however, Dimension table SK is actually a sub-string of the fact table FK.
Example:
DIMENSION FACT
--------------- ----------------------
101 101,104(2),102(1)
102
103
104
105
So in this case the analysis should pick all 3 records of dimension table.(i.e: 101,104,102) for the single record of fact table.
Moreover in DB, the Dimension table SK datatype is NUMBER and Fact Table FK is VARCHAR.
How can i design my RPD Physical Layer and BM layer to achieve this?