I would like to be able to display date attributes in multiple format, based on the context. For example D1 in Report1 would display as "mm-dd-yyyy" and the same D1 in Report2 would display as "dd-mm-yy."
To accomplish this, I have created a DayFormatTable which contains uniquely formatted date data in each column of each row. For example:
Col1: 01-01-2005
Col2: 01/01/2005
Col3: 01-01-05
By creating additional "Forms" for my D1 date attribute, I could choose between different forms and hence different formats. By adding additional forms , I have created a "relationship" between my fact table and the DayFormatTable table.
The question is how can I do the same thing for another date attribute in my Fact2 logical table, without creating a relationship between Fact1 and Fact2 tables ?
Thanks.