Reputation: 23
we have a cube in our project, So far we are accessing cube via Store Procedure (Writing MDX query inside SP and Executing with help of Linked server). Now we have to acccess the cube without MDX query. I have reaserched a lot and found ADOMD where I can get cube information such as Dimension,Attribute and level.ADOMD providers, ADOCommand which executes MDX query and returns result set.Is there any other way to get data from cube without MDX query..?
Upvotes: 0
Views: 1104
Reputation: 120
You can sent MDX, DMX and ASSL-Commands. So its possible to get data without mdx. But what do you want?
With the ADOMD.Net-Objectmodel you get "only" the metadata (also you can get the schemarowsets). For more you need any command.
Upvotes: 0