I was wondering if there's a simple way to extract a list of all the tables description from the Data Source View at SSAS? I've been so far been playing around with this simple DMV-query to get the cube metadata:
SELECT * FROM $system.dbschema_tables
WHERE TABLE_TYPE = 'TABLE'
Which returns me a complete list of the tables but it's completely blank at DESCRIPTION despite the fact that I written in several of the DataTables Description field. Am I perhaps using the wrong rowset?