Hi
I'm trying to use the objects in the Microsoft.AnalysisServices namespace (in VB.NET) to manage objects on the SSAS server. (Specifically, I'm trying to create a partition).
Reading collections, objects and properties from the server works fine. But if I try to do anything (write rather than read), the code runs with no errors, but on the server nothing has happened.
All the examples I've seen use this .CaptureXML to capture the XMLA generated, and then .ExecuteCaptureLog to actually do the thing.
Why is this? Is it the only way to actually do anything with these objects? Or just a better way? Is there some magic "DO IT" method I can execute on the server, to make the changes my code makes actually happen?
I've (of course) looked at the MSDN documentation, but it (as all too often these days) says nothing about this kind of background information: it's pretty much all based on this template:
Public Sub ThrobWangle(Wangle Wangle, HowMuch int) 'This method throbs the wangle, to a degree specified by HowMuchDoes anyone know of any more "meta" documentation on these objects?