2012-10-18 78 views
1

喜2008年因errore我的SQL Server 2008服務包1 64位。和我有這個查詢的查詢設計器在SSRS 報告:SSRS SQL Server服務包2與查詢

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函數協調對‘區重點’屬性包含一組「

它的工作好(全部或爲參數區多選擇值。 ,但如果我選擇Onley一個區域進行參數把它給我錯誤 爲什麼......? 還有一件事,如果我不刪除從軸上清空Errore消息不見了

回答

0

嘗試刪除所有STRTOSET公式CONSTRAINED。當我將SSRS解決方案升級到VS2012時,我遇到了類似的問題。我認爲這與收緊不合格成員名稱的證券有關。