David542
David542

Reputation: 110217

How to get the raw mdx cellset back

The cellset that is returned in Visual Studio or SSMS is within a grid. Is there a way to examine the raw data that is returned back from the MDX query? For example, returning the data that includes the font size, the color, etc. and reading that data directly?

If so, how can I examine that in SSMS or VS?

Upvotes: 0

Views: 106

Answers (1)

MoazRub
MoazRub

Reputation: 2911

In SSMS double click the result grid, it will expose you the additional porperties. In VS you can use AdoMD, any results returned from a cube will be in CellSet Class.

enter image description here

Upvotes: 1

Related Questions