Viewing 15 posts - 1,546 through 1,560 (of 1,839 total)
Not sure if this helps, but you could try using the 'char' function. It would appear that the default format is US date format.
Char(X,F)
Returns the string-representation of a date, time...
March 6, 2005 at 7:41 pm
Not knowing what the range of possible values are whenthe measure is numeric (ie can they go negative), the following might work for you.
If you can change you string measure...
March 6, 2005 at 7:37 pm
You could try out the following tool, not supported by MSft but (co-)written by one of the MSft guys who co-wrote the performance and Ops guides (Dave Wickert). It basically...
February 25, 2005 at 7:55 pm
You're relly talking about the process buffer size when looking at processing cubes. Check out Appendix C in the same document for instructions on how to tune it - basic...
February 25, 2005 at 7:40 pm
Assuming (which is always bad
) that your periods belong to years, can't you set the level (and dim) types so that the...
February 21, 2005 at 3:47 pm
the following article could possibly help (it's about using AS and RS, look towards the end re: actions) but will depend a little on how dynamic you need to query. ...
February 20, 2005 at 5:16 pm
in psuedo code, for a calc membr in the measures dim, you could use something like
time.currentmember + time.currentmember.lag(-3) + time.currentmember.lag(-6) + time.currentmember.lag(-12)
but this will cause you problems at levels...
February 16, 2005 at 8:48 pm
Have you looked at the parallelperiod function? Using appropriate params you can use this to pick out 'same month last year', or even 'same month next year', s you really...
February 16, 2005 at 8:42 pm
Have you tried using the built-in drill through functionality? I'm assuming that the fact and dims are all on the same server (server2). When setting up drill through in the...
February 16, 2005 at 8:38 pm
Chris,
this should do what you want, but is likely to not produce the exact output you'll want if yo start wanting to crossjoin on the columns (ie measures, in this...
February 8, 2005 at 4:30 pm
the information should be there, it probably depends a little on the querying tool as to how it is displayed. Assuming you're using the mdx sample app, if you dbl-click...
February 8, 2005 at 6:23 am
The things I would be most concerned about are
February 7, 2005 at 4:00 pm
If you take a look at this previous post -> http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=17&messageid=97151 you may find some answers there. One thing that has changed since I posted in that thread is the...
January 26, 2005 at 8:25 pm
It is the Edition of MS AS that you're running, most likely Standard Edition (do a search for 'Features Supported by the Editions' in BOL to see what each edition...
January 18, 2005 at 4:16 pm
have you thought of doing either calculated cells or a custom rollup? Calc cells will let you specify a subset of the cube (eg anything under and including devolution) and set...
January 15, 2005 at 6:33 am
Viewing 15 posts - 1,546 through 1,560 (of 1,839 total)