Existing reports in Proclarity 6.0

Hi,

I need the list of all the existing reports, what measures and dimensions each of the report is built on etc. I saw that the table dbo.BookElements can be used to get all the list of reports. But how can I findout what dimesions and maesures are being used in each Report?

Thanks and Regards,

Praveena

 

May 20th, 2011 6:19pm

Hi Praveena,

The bookelements table has a column called XMLData - this contains all the metadata for the report.  You could cast this out and extrapolate data from it, or use the object model to retrieve the MDX for a recently executed report.

Hth,

Sean

Free Windows Admin Tool Kit Click here and download it now
May 25th, 2011 9:29am

Hi Praveena,

Use the below query:

SELECT CAST(XMLData AS XML) AS XML_DATA,* FROM dbo.BookElements C  WHERE CreatedBy LIKE '%Shiv%'

April 14th, 2014 4:20am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics