A Microsoft online analytical data engine used in decision support and business analytics, providing the analytical data for business reports and client applications such as Power BI, Excel, Reporting Services reports, and other data visualization tools.
A vague question.
No, you can not merge it on MDX side, but in the relational data base. Create a view and merge the base table using UNION ALL, like
CREATE VIEW dbo.v_MergeDim
AS
SELECT Col1, COL2, Col3
FROM dbo.Dimension1
UNION ALL
SELECT Col1, COL2, Col3
FROM dbo.Dimension2;
to categorize hospital and gender for each of the hospital I create new Database at MSQLSERVER that have hospital, region and sexes table and then I add new relationship between both of the table. The database for the both hospital were from 2 different data sources. What I want to visualize is like this =>
. Hope u understand what I trying to explained.