SQL Server Analysis Services
Is there a way to get the data source view last schema update value as seen on the properties dialog box?
If I use the DMV syntax:
SELECT * FROM $System.MDSCHEMA_CUBES
It will list all the measures and dimensions used in the cube database which shows details the same as right clicking the measure or dimension and selecting properties. But, this query does not include the properties for data source or data source view.
Thanks in advance!
Regards and Thanks,
Willie P
P.S. The main reason why I need to get the Last Schema Update for data source view, measures and dimension is to determine if a particular cube element was customized/modified by the client so that if we have to deploy an update to the cube, we have an option to update a particular cube element or not just by getting the Last Schema Update.
If this is not possible using SSAS DMV's, maybe a C# sample program will do.