Hi, I have a cube with 3 partitions, and several dimensions. When I run the following query:WITH DYNAMIC SET Top5Ip AS ( TOPCOUNT([Dim Host].[IP Address].CHILDREN, 5, [Measures].[Response Time]))SELECT Top5Ip ON 0 ,[Measures].[Response Time] ON 1FROM [Fact Object Result]WHERE ([Test Date].[Cal Year Hierarchy].[Day In Month].&[7]&[5]&[2013])It gives error"Errors in the high-level relational engine. The data source view does not contain a definition for the '[dbo].[dimPage]' table or view. The Source property may not have been set."However if I move the data slice from "where" clause to TopCount function WITH DYNAMIC SET Top5Ip AS ( TOPCOUNT(NONEMPTYCROSSJOIN([Dim Host].[IP Address].CHILDREN,{[Test Date].[Cal Year Hierarchy].[Day In Month].&[7]&[5]&[2013]}), 5, [Measures].[Response Time]))SELECT Top5Ip ON 0 ,[Measures].[Response Time] ON 1FROM [Fact Object Result]Any idea how I can fix this?
↧