Does anyone know of an SSAS specific tool that compares SSAS databases? Not their data, just schema and maybe partition definitions. When I say tool - something that knows about SSAS and has that business knowledge built into it.
|
|
I'm a Product Manager at Red Gate. We have just released a free preview of SSAS Compare. This allows you to review, script and deploy changes between SSAS instances. |
||||
|
|
It's crude but you could extract the definitions of each database, either with Visual Studio (BI Studio/Reverse Engineer option when creating a new project) or with another XMLA capable tool, and then run a visual diff on the XML files. The XML cube definitions are reasonably straight-forward to read if you're familiar with SSAS. Have you tried this? |
|||
|
|
Depending on what you want to compare you could also script a simple comparison tool using amo (http://technet.microsoft.com/en-us/library/microsoft.analysisservices.aspx). Given you just want to compare a few attributes this could be a lightweight approach. |
|||
|
|
You can use BIDS helper (the free add-on to BIDS): http://bidshelper.codeplex.com/ This has "smart diff" option which allows different files (such as SSIS packages and SSAS XMLA schemas) to be compared. Smart diff provides more meaningful comparisons when comparing XML files. So first you need to script out your DBs in SSMS by rclick > script database as > create to then in BIDS use smart diff to compare the XMLA scripts to see the differences. |
|||
|