SSRS SQL Server Service Pack 2 2008导致查询错误



我有SQL Server 2008 Services Pack 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个参数(年,月,日,区域)对我来说很好。

,但是我安装服务包2 2008

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

" MDX函数失败了,因为'区域键'属性的坐标包含一个集合"

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

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