Viewing 15 posts - 1 through 15 (of 113 total)
I've done both and found tables to be easier to get the info you need out such as timings of steps etc. However i have generally found that support/help...
March 22, 2013 at 10:24 am
Agree - I got bored writing the SQL.....
March 21, 2013 at 4:14 am
Create a view in SQL and base your dimension off that. You might want to write this to a table to give you some flexibility to name quarters or...
March 21, 2013 at 4:11 am
The syntax looks fine
It will be a problem with a member - best double check that the members of the tuple are correct e.g. is [Chargebacks].[CHB_Tree].[CHB Type].&[IRS VOID] correct?
Mack
March 21, 2013 at 4:00 am
Hi Bobby,
What version of SSAS are you using? Haven't used cell calcs in yearrrrrrrrrsssssssssss
If you are using 2005+ then you could try
SCOPE([Income_Statement].[Account List].&[464]); --not sure I included...
March 21, 2013 at 3:22 am
You are converting a set to a member which you can't do
Try
member [Measures].[VOID] As
(strToMember("[CHB Date].[Year - Month - Period - Date].[Date].&[" + Format(dateadd("d",now(),-1), "yyyy-MM-T00:00:00") +"]") , [Chargebacks].[CHB_Tree].[CHB Type].&[IRS VOID]...
March 21, 2013 at 3:05 am
If I have understood this correctly then its quite a tricky one but should be possible using the generate statement
I cannot test the below MDX but here is a stab...
March 21, 2013 at 3:01 am
You could create a set of dates using MDX
I believe in a previous post of yours DavosCollective suggested the following MDX for Yesterday
StrToMember("[Time].[Year - Month – Period - Date].[Date].&[" +...
March 21, 2013 at 2:05 am
If it works serially then maybe it's a problem with parallelisation as SSAS is sending multiple queries to SQL Server on a 2 CPU box
I've had issues with DTS where...
March 15, 2013 at 5:01 am
When we had issues with 32-bit SSAS it did a similar thing - it just seemed to flatline and hence it took so long to find the issue
I noticed that...
March 15, 2013 at 2:04 am
A member is one thing - one product or the sum/avg of a set of products
You need to define your set as a set as below - a set being...
March 14, 2013 at 11:15 am
It's probably how I would have done it
Alternatively you could do
MEMBER [Measures].[Yearly Adv Req] AS
(Descendants(Ancestor( [Date].[Calendar].CurrentMember, [Date].[Calendar].[Year] ),2).Item(0)
, [Measures].[Advertising Req] )
Mack
March 14, 2013 at 11:10 am
You could remove their OLAP admin access....(I sound like a DBA now :w00t:) and grant them admin access to each cube - this can be done by creating an admin...
March 14, 2013 at 11:06 am
Hi Astrid,
Your MDX is quite unusual and without access to your cubes I can't really say I've helped you but try the below MDX
I would say that:
If you want averages/max...
March 14, 2013 at 10:59 am
Use SSIS and loop through the databases running this MDX and feed the data into a table.
Then do the comparison in SQL Server
Mack
March 14, 2013 at 10:47 am
Viewing 15 posts - 1 through 15 (of 113 total)