hi
Data warehouse consist of 2 Fact table F1 and F2 and 8 dimensions(3 common dimension tables and 5 others).
Fact table F1 and F2 in warehouse have three common dimension table.
I need opinion about how to arrange universe for this data warehouse.
Report consist of measure from both fact tables.
What will be right way : -
create two separte universe - one for each fact table.
use single universe and use alias for common dimension.
Not sure why you want to alias common dimensions for what appears to be the sake of it, or rather a lack of understanding.
Alias tables when they mean different things, e.g. alias Dim_Date for it to represent sales date, purchase date and invoice date.
If Dim_Product has the same meaning across all tables, there’s no point in aliasing it. Aliases are geared to creating the correct objects with the correct business meaning. Hope that clears it up for you.