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 つのパラメーター (年、月、日、ゾーン) があり、問題なく動作します。

しかし、サービスパック2 2008をインストールした後

パラメータに 1 つのゾーンを選択すると、エラーが発生します。

「「ゾーン キー」属性の座標にセットが含まれているため、MDx 関数が失敗しました」

(すべてまたは複数の場合、パラメーターゾーンの値を選択します。ただし、パラメーターに1つのゾーンのみを選択すると、なぜエラーが発生しますか....そして、軸から非空を削除すると、エラーメッセージがなくなります

4

1 に答える 1

0

CONSTRAINEDすべてのSTRTOSET数式から を削除してみてください。SSRS ソリューションを VS2012 にアップグレードしたときに、同様の問題が発生しました。これは、資格のないメンバー名に対するセキュリティを強化することに関連していると思います。

于 2013-09-09T00:07:26.570 に答える