我有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功能失败,因为'区域键'属性的坐标包含一组”
它适用于(全部或多选参数区域的值。 但如果我选择Onley一个区域为参数它给我错误 为什么....? 还有一件事,如果我从轴中删除非空错误消息已消失
答案 0 :(得分:0)
尝试从所有CONSTRAINED
公式中删除STRTOSET
。当我将SSRS解决方案升级到VS2012时,我遇到了类似的问题。我认为这与收紧不合格会员名单的证券有关。