Viewing 15 posts - 61 through 75 (of 669 total)
Anybody working on this piece? I can take this up.
December 31, 2012 at 10:50 pm
Yes you can the popular ways are:
1. Regression
2. Forecasting
December 20, 2012 at 11:57 pm
What is the version of SQL Server you have?
December 20, 2012 at 11:56 pm
Nish, if thats the case, why not use a Hybrid Query(Mix of MDX and SQL)
See this: http://www.sqlservergeeks.com/blogs/suhas/personal/545/sql-mdx-in-one-apartment-hybrid-query
November 6, 2012 at 11:10 pm
Nish, you should create a new meaure For example:
WITH MEMBER [Measures].[Test Measure] as ([Measures].[Reseller Sales Amount],[Geography].[Country].&[United States],[Reseller].[Business Type].&[Warehouse])
November 6, 2012 at 10:44 pm
Tathagat Verma (9/26/2012)
I guess the output will be similar if we'd do a cross join.
The output remains same for INNER / LEFT / RIGHT and CROSS JOIN
September 26, 2012 at 3:09 am
Steve Jones - SSC Editor (9/25/2012)
DAX is used in the SSAS world of Powerpivothttp://msdn.microsoft.com/en-us/library/ff487170%28v=sql.105%29.aspx
DAX is a new query language. It is proposed as an alternate(not to replace) to MDX.
September 25, 2012 at 11:18 am
You can also re-write as below:
WITH SET SetA as Except([PH_CUST].[Cust].Children,{[EMP].[PHWEB].[Activce].&[1]})
SELECT { } ON COLUMNS,
NON EMPTY { SetA } ON ROWS
FROM Ad_CUBE
September 17, 2012 at 12:12 am
You need to create caluclated measures for the COUNT measure and to filter by date you can use the colon(:) operator as in January 2012 : April 2012, which will...
September 17, 2012 at 12:08 am
Yes. Infact the data modeler has to walk the extra mile to ensure that the model is supplemented with all features planned. Also, since the the idea of self service...
August 16, 2012 at 9:31 pm
This is a pretty common scenario. All you need to do is process these two tables and see the magic 🙂
July 31, 2012 at 7:13 am
Orlando, just 3 words...
Simple. Lucid. Clear.
July 2, 2012 at 12:01 am
Viewing 15 posts - 61 through 75 (of 669 total)