Viewing 4 posts - 1 through 4 (of 4 total)
Can you try this
CREATE MEMBER CURRENTCUBE.[Measures.[Median of Enterprise Users]
AS MEDIAN(
{[Enterprises and Users].[Users].[All].Children}
,[Measures].[Loadtime] ),
VISIBLE = 1;
February 4, 2014 at 4:03 am
I have done it this way. It is working perfect
CREATE MEMBER CURRENTCUBE.[Measures].Electivemedianlos_Test
AS Median
(
{[Date].[Calendar].CurrentMember.Children},
...
February 4, 2014 at 3:59 am
Create the following table on TempDB, It will resolve the issue
CREATE TABLE [tempdb].[dbo].[sysutility_batch_time_internal] (
...
October 24, 2011 at 6:36 am
:)This is a good solution
SET NOCOUNT ON
DECLARE @DBName nvarchar(50), @INName nvarchar(50)
DECLARE @ODBName nvarchar(50), @OINName nvarchar(50)
Declare @execstr nvarchar(200)
--PRINT '-------- Vendor Products Report --------'
DECLARE Index_cursor CURSOR FOR
Select A.Name as InName,ob.Name as...
September 8, 2008 at 9:50 am
Viewing 4 posts - 1 through 4 (of 4 total)