Viewing 15 posts - 31 through 45 (of 113 total)
Can ou post all of your query - also the column name is [stage] right?
Mack
February 12, 2013 at 7:20 am
Try this and let me know if it works
SELECT
{[Measures].[Operational Transactions Count]} ON COLUMNS,
{[Date].[Hierarchy - Fiscal].[Fiscal Week].&[2012]&[48]} ON ROWS
FROM
(SELECT {[Financial Transaction Channel].[Transaction Channel Desc].&[POS],
[Financial Transaction Channel].[Transaction Channel Desc].&[CONCIERGE]} ON COLUMNS
FROM...
February 8, 2013 at 5:38 am
Hi,
That's fine if you are writing all the MDX yourself but not ideal if you are using an ad-hoc query tool (like pivot tables in Excel or ProClarity or XLCubed...
February 8, 2013 at 5:30 am
This maybe more what you are after as it will give you a comma seperated list of the children for the All level
with member [Measures].[member name] as
IIF([Dimension].[Hierarchy].Level.Ordinal = 0
, Generate([Dimension].[Hierarchy].[All].Children
,[Dimension].[Hierarchy].CurrentMember
,',')
,...
February 8, 2013 at 5:16 am
Not sure this fully answers you question but could you create an extra column in you MDX statement with the name in such as
with member [Measures].[member name] as
[Dimension].[Hierarchy].CurrentMember.Name
Select...
February 8, 2013 at 5:08 am
I would say that you've posted this in the SSAS bit of the forum not the Report Builder/Reporting Services bit. You might get more response there
Mack
February 8, 2013 at 5:00 am
Try
OpenAmountDomestic = 0 ? 0 : DATEDIFF( "d", DueDate , GETDATE() )
I can't test it for you but it should be along those lines
Mack
February 6, 2013 at 8:44 am
Try something along the lines of
With Member [Measures].[Thing Count YTD] As
Sum(YTD([Effective Date].[Year-Week].CurrentMember)
, [Measures].[Thing Count] )
SELECT
[Measures].[Thing Count YTD] ON 0,
[Effective Date].[Year-Week].[Week].[2013 Week 6] ON 1
FROM
[Cube]
Mack
February 3, 2013 at 3:04 pm
Try something like
with set [MIs] as
Filter([Marca_Modello].[Codice Merceologia].Members
,Left([Marca_Modello].[Codice Merceologia].[All Marca_Modello].CurrentMember.Name,2) = "MI")
SELECT
[MIs]
ON COLUMNS,
[Measures].[Importo Venduto] ON ROWS
FROM Vendite
WHERE [Anno].[All Anno].[2012]
Mack
February 3, 2013 at 2:57 pm
Not sure there is a great amount of detail to go off but I would create two measures - # of contracts started this year & # of contracts finished...
January 28, 2013 at 3:42 am
What bit don't you understand?
If the answer is all of it then you may need to look at TSQL tutorials online...
Mack
January 28, 2013 at 3:30 am
hmmmmmm sounds like restarting the service is your best option at this point
Looks like no-one else is using it tho judging from the DSVs
Mack
January 25, 2013 at 6:18 am
Use the DMVs to check if there are any large queries running or any long running connections and kill them. SSAS will wait for large queries to finish before...
January 25, 2013 at 5:01 am
Restarting the service should do this
You could see if there are connections to the server that you can kill. Use the DMVs to find a connection and then kill...
January 25, 2013 at 4:41 am
Viewing 15 posts - 31 through 45 (of 113 total)