3

我总是在使用 python 的 MDX 查询中得到一个值。我正在连接到支持 xmla 的 icCube。

provider = xmla.XMLAProvider()
con = provider.connect(location='conn_str',username='q1',password='q2')
cmd="""WITH MEMBER Measures.[Avg Profit Margin] AS Sum(SOMETHING,    Measures.[Profit Margin]) select NON EMPTY {[Measures].[Profit Margin]} ON columns, {[Client Country]} ON rows FROM [XYZ]"""

res=con.Execute(cmd,Catalog="cube_closed_contracts")
print res.getSlice()

为什么它总是返回一个值?

[[(Cell){
     _CellOrdinal = "0"
     Value = 0.0358054
     FmtValue = "3.58%"
   }]]
4

1 回答 1

1

您确定 MDX 查询应该返回多个单元格吗?

WITH MEMBER Measures.[Avg Profit Margin] AS ... 
select 
      NON EMPTY {[Measures].[Profit Margin]} ON columns, 
      {[Client Country]} ON rows 
FROM [XYZ]

“ [Client Country] on rows” 表示 [Client Country] 的默认成员,因此我相信这将返回单个单元格结果。我会在 icCube MDX 编辑器中尝试请求。

希望有帮助。

于 2015-04-03T07:02:04.753 回答