0

我有 sql server 2008 服务包 1 64 位。我在查询设计器中使用此查询在 ssrs 中报告:

 SELECT NON EMPTY { [Measures].[Sum_AvgTime_WaitDist], [Measures].[Sum_AvgTime_WaitConfirm], [Measures].[TheDistribution_Count], [Measures].[Void_Dist_Price], [Measures].[Void_Dist_Count], [Measures].[Sum_AvgTime_Dist], [Measures].[Sale_Estimate_Price], [Measures].[Sum_AvgTime_Settle], [Measures].[Sum_AvgTime_Confirm], [Measures].[TheDistribution_Price], [Measures].[Sum_AvgTime_Delivered], [Measures].[Sale Price], [Measures].[Ret Dist Pure Price], [Measures].[Sale Count], [Measures].[Transfer To Next Month From Month Except Last Day], [Measures].[Transfer To Next Month], [Measures].[Order Count Last Day Order], [Measures].[Void_Sale_Price], [Measures].[Void_Sale_Count], [Measures].[Sale Price LD], [Measures].[Order Count Last Day Exit Dist], [Measures].[Exit Price LD], [Measures].[Transfer To Next Month From Month Last Day], [Measures].[BeenRejected_Count], [Measures].[BeenDelivered_NotSettled_Price], [Measures].[BeenRejected_Price], [Measures].[DuringTheVerification_Count], [Measures].[Convert_Price], [Measures].[Return Price], [Measures].[Sale_Estimate_Count], [Measures].[AreDistributed_Count], [Measures].[BeenDelivered_NotSettled_Count], [Measures].[AreDistributed_Price], [Measures].[FullBack_Price], [Measures].[FullBack_Count], [Measures].[Less_Price], [Measures].[RetDist_Pure_Price], [Measures].[RetDist_Pure_Count], [Measures].[FactorSettled_Count], [Measures].[DuringTheVerification_Price], [Measures].[FactorSettled_Price], [Measures].[ForwardPlanning_Price], [Measures].[ForwardPlanning_Count] }
  ON COLUMNS, 
  NON EMPTY {

  {[Dim Sale Office].[Zone Key].[Zone Key].ALLMEMBERS }* 
  {[Dim Sale Office].[Office Key].[All]} * 
  {[Dim Dist Branch].[Dist Branch Key].[All]}, 

  {[Dim Sale Office].[Zone Key].[All]} * 
  {[Dim Sale Office].[Office Key].[All]} * 
  {[Dim Dist Branch].[Dist Branch Key].[All]}, 

  {[Dim Sale Office].[Zone Key].[Zone Key].ALLMEMBERS} * 
  {[Dim Sale Office].[Office Key].[Office Key].ALLMEMBERS} * 
  {[Dim Dist Branch].[Dist Branch Key].[All]}, 

  {[Dim Sale Office].[Zone Key].[All]} * 
  {[Dim Sale Office].[Office Key].[All]} * 
  {[Dim Dist Branch].[Dist Branch Key].[Dist Branch Key].ALLMEMBERS}, 

  {[Dim Sale Office].[Zone Key].[Zone Key].ALLMEMBERS} * 
  {[Dim Sale Office].[Office Key].[Office Key].ALLMEMBERS} * 
  {[Dim Dist Branch].[Dist Branch Key].[Dist Branch Key].ALLMEMBERS }

   } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS 
   FROM ( SELECT ( STRTOSET(@DimSaleOfficeZoneKey, CONSTRAINED) ) ON COLUMNS 
   FROM ( SELECT ( STRTOSET(@DimDateDay, CONSTRAINED) ) ON COLUMNS 
   FROM ( SELECT ( STRTOSET(@DimDateMonth, CONSTRAINED) ) ON COLUMNS FROM ( SELECT ( STRTOSET(@DimDateYear, CONSTRAINED) ) ON COLUMNS FROM [Cube_SaleEstimateDashboard])))) WHERE ( IIF( STRTOSET(@DimDateYear, CONSTRAINED).Count = 1, STRTOSET(@DimDateYear, CONSTRAINED), 
   [Dim Date].[Year].currentmember ), 
   IIF( STRTOSET(@DimDateMonth, CONSTRAINED).Count = 1, STRTOSET(@DimDateMonth, CONSTRAINED), 
   [Dim Date].[Month].currentmember ), 
   IIF( STRTOSET(@DimDateDay, CONSTRAINED).Count = 1, STRTOSET(@DimDateDay, CONSTRAINED), 
   [Dim Date].[Day].currentmember ) ) CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, FORMAT_STRING, FONT_NAME, FONT_SIZE, FONT_FLAGS

如您所见,此查询有 4 个参数(年、月、日、区),它对我来说很好用。

但在我安装 Service Pack 2 2008 之后

如果我选择一个区域作为参数,它会给我错误:

“MDx 函数失败,因为‘区域键’属性的坐标包含一个集合”

它适用于(全部或对于参数区域的多选值。但是如果我为参数选择仅一个区域它会给我错误为什么....?如果我从轴中删除非空,还有一件事错误消息消失了

4

1 回答 1

0

尝试CONSTRAINED从所有STRTOSET公式中删除 。当我将 SSRS 解决方案升级到 VS2012 时,我遇到了类似的问题。我认为这与收紧针对不合格成员名称的证券有关。

于 2013-09-09T00:07:26.570 回答