I was able to connect to SQL server Analysis service in Python using Microsoft.AnalysisServices.dll
, and now I can't execute query on cube.
I've tried Execute
method same as following:
amoServer.Execute('select from finance')
After issuing Execute
method I have this error:
<Microsoft.AnalysisServices.XmlaError object at 0x000000000000002B [Microsoft.AnalysisServices.XmlaError]>
Note: I'm using IronPython with Python 2.7 on Windows Server 64Bit.
What's the problem?