Viewing 8 posts - 31 through 38 (of 38 total)
Hi Xavier,
First take a look at this http://msdn.microsoft.com/en-us/library/aa902652(SQL.80).aspx
This article contains an expression to calculate the max values over time
Measures.[Maximum Inventory Value]:
Max(Descendants(Time.CurrentMember, Time.Month), Measures.[Value])
The behavior...
December 13, 2009 at 9:11 am
No,
Connection managers are added in the connection managers pane.
When invoking a component or task that needs a connection, you can create a new connection or resuse a existing one.
You my...
December 10, 2009 at 4:08 pm
Hi
I guess you need a fasttrack course MDX. Copy pasting does not do job. I used a 'standarized' way to express myself to make things clear to you.
I...
December 8, 2009 at 2:24 pm
Just to point you into the right direction,
WITH
Member [Measures].[oneweek ago StockOnHand] AS
( ParallelPeriod ([Date].[Calendar].[DATE], 7, [Date].[Calendar].Currentmember)
, [Measures].[FactStockOnHand] )
Select
{[Measures].[FactStockOnHand] , [Measures].[oneweek ago...
December 7, 2009 at 1:49 pm
Hi
Here it comes, a quick intro into the MDX language
/*
LETS DEFINE THE MEMBER simple count so default INCLUDEEMTPY. I do presume you need the count for every row.....
December 7, 2009 at 12:33 pm
The way SSIS handles look ups, is basically store all in memory and try to equi-join on values stored in mem. This never enables you to create in between...
December 6, 2009 at 1:43 pm
Hi
Simple answer: Set the InteractiveHeight = 0 (SSRS 2008: expand Interactive size, set Height = 0)
Accessible only through the properties pane. In BIDS use view properties window. To pop up...
December 6, 2009 at 8:46 am
Hi Mike
The merge component is not that good in handling rows with same key values, [highlight=#ffff11]so having NON UNIQUE KEYS[/highlight]. Your data contains NON UNIQUE KEY values, in the sorted...
December 6, 2009 at 7:08 am
Viewing 8 posts - 31 through 38 (of 38 total)