dbTalk Databases Forums  

All level in SSAS 2005

microsoft.public.sqlserver.olap microsoft.public.sqlserver.olap


Discuss All level in SSAS 2005 in the microsoft.public.sqlserver.olap forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Inna
 
Posts: n/a

Default All level in SSAS 2005 - 05-10-2006 , 02:37 PM






Hello,

How can I define my measures group to show total data when no dimension is
dropped on the column or row fields?
I guess it is something about all level, or something related to total. I
defined in my dimension IsAggregatable as true, but it doesn't work as
expected:
only when I drill down to lowest level of my hierarchy data appears, when I
remove the lowest level - it shows empty cells.

Please help.
Thank in advance
Inna




Reply With Quote
  #2  
Old   
Darren Gosbell
 
Posts: n/a

Default Re: All level in SSAS 2005 - 05-12-2006 , 07:41 AM






Go into the dimension usage tab for the cube, click on the measure
group. One of the properties for the measure group is
"IgnoreUnrelatedDimensions".

From BOL:

Quote:
When members of dimensions unrelated to the measure group are included
in a query, this property determines whether unrelated dimensions are
forced to their top level or not.
Quote:
So, if this is set to false, the cube displays nulls when the measures
in this group are sliced by an unrelated dimension, when this value is
true the measure will display the value from the "all" level.

--
Regards
Darren Gosbell [MCSD]
Blog: http://www.geekswithblogs.net/darrengosbell

In article <#7wIfkGdGHA.536 (AT) TK2MSFTNGP02 (DOT) phx.gbl>, tzinna (AT) gmail (DOT) com
says...
Quote:
Hello,

How can I define my measures group to show total data when no dimension is
dropped on the column or row fields?
I guess it is something about all level, or something related to total. I
defined in my dimension IsAggregatable as true, but it doesn't work as
expected:
only when I drill down to lowest level of my hierarchy data appears, when I
remove the lowest level - it shows empty cells.

Please help.
Thank in advance
Inna





Reply With Quote
  #3  
Old   
Inna
 
Posts: n/a

Default Re: All level in SSAS 2005 - 05-13-2006 , 09:38 AM



Hello Darren,

Thank you very much for your answer.

I checked this option and it is set to true at my cube.

May be you have any other ideas?

I already removed all dimensions from the cube to localize the problem.
There is only one time dimension with two hierarchy - months and weeks -
stood in the cube and it doesn't show any data until I drill down to the day
level (lowest). Only then data appear. And no total!!!

What else do you think it could be?

Please, help

Thanks

Inna

"Darren Gosbell" <jam (AT) newsgroups (DOT) nospam> wrote

Quote:
Go into the dimension usage tab for the cube, click on the measure
group. One of the properties for the measure group is
"IgnoreUnrelatedDimensions".

From BOL:


When members of dimensions unrelated to the measure group are included
in a query, this property determines whether unrelated dimensions are
forced to their top level or not.


So, if this is set to false, the cube displays nulls when the measures
in this group are sliced by an unrelated dimension, when this value is
true the measure will display the value from the "all" level.

--
Regards
Darren Gosbell [MCSD]
Blog: http://www.geekswithblogs.net/darrengosbell

In article <#7wIfkGdGHA.536 (AT) TK2MSFTNGP02 (DOT) phx.gbl>, tzinna (AT) gmail (DOT) com
says...
Hello,

How can I define my measures group to show total data when no dimension
is
dropped on the column or row fields?
I guess it is something about all level, or something related to total. I
defined in my dimension IsAggregatable as true, but it doesn't work as
expected:
only when I drill down to lowest level of my hierarchy data appears, when
I
remove the lowest level - it shows empty cells.

Please help.
Thank in advance
Inna







Reply With Quote
  #4  
Old   
Darren Gosbell
 
Posts: n/a

Default Re: All level in SSAS 2005 - 05-15-2006 , 08:09 AM



If you only have one dimension in the cube then the
"IgnoreUnrelatedDimensions" setting will not make any difference.

It sounds like there may be something wrong with your attribute
relationships. Have a look at how the relationships are setup in the
Adventure Works sample database. Each attribute should have a
relationship with any "parent" attributes. At a guess yours should look
something like the following:

Year
-
Quarter
Year
Month
Quarter
Week
Year
Day
Month
Week

--
Regards
Darren Gosbell [MCSD]
Blog: http://www.geekswithblogs.net/darrengosbell

In article <OjvyyrpdGHA.2188 (AT) TK2MSFTNGP05 (DOT) phx.gbl>, tzinna (AT) gmail (DOT) com
says...
Quote:
Hello Darren,

Thank you very much for your answer.

I checked this option and it is set to true at my cube.

May be you have any other ideas?

I already removed all dimensions from the cube to localize the problem.
There is only one time dimension with two hierarchy - months and weeks -
stood in the cube and it doesn't show any data until I drill down to the day
level (lowest). Only then data appear. And no total!!!

What else do you think it could be?

Please, help

Thanks

Inna

"Darren Gosbell" <jam (AT) newsgroups (DOT) nospam> wrote in message
news:MPG.1ecf2d879c563dc4989916 (AT) news (DOT) microsoft.com...
Go into the dimension usage tab for the cube, click on the measure
group. One of the properties for the measure group is
"IgnoreUnrelatedDimensions".

From BOL:


When members of dimensions unrelated to the measure group are included
in a query, this property determines whether unrelated dimensions are
forced to their top level or not.


So, if this is set to false, the cube displays nulls when the measures
in this group are sliced by an unrelated dimension, when this value is
true the measure will display the value from the "all" level.

--
Regards
Darren Gosbell [MCSD]
Blog: http://www.geekswithblogs.net/darrengosbell

In article <#7wIfkGdGHA.536 (AT) TK2MSFTNGP02 (DOT) phx.gbl>, tzinna (AT) gmail (DOT) com
says...
Hello,

How can I define my measures group to show total data when no dimension
is

Reply With Quote
  #5  
Old   
Deepak Puri
 
Posts: n/a

Default Re: All level in SSAS 2005 - 05-15-2006 , 09:03 PM



Might be worth checking whether the "CALCULATE" statement is missing
from the cube MDX Script:

http://msdn2.microsoft.com/en-us/library/ms144939.aspx
Quote:
CALCULATE Statement (MDX)
...
Ordinarily, the nonleaf members of a cube have null values until you
call a CALCULATE statement.
...
Quote:

- Deepak

Deepak Puri
Microsoft MVP - SQL Server

*** Sent via Developersdex http://www.developersdex.com ***


Reply With Quote
  #6  
Old   
Inna
 
Posts: n/a

Default Re: All level in SSAS 2005 - 05-16-2006 , 02:51 AM



Dear Deepak,
I did what you advised and it works!!!!
Thank you very much!!!!!!
Inna


"Deepak Puri" <deepak_puri (AT) progressive (DOT) com> wrote

Quote:
Might be worth checking whether the "CALCULATE" statement is missing
from the cube MDX Script:

http://msdn2.microsoft.com/en-us/library/ms144939.aspx

CALCULATE Statement (MDX)
..
Ordinarily, the nonleaf members of a cube have null values until you
call a CALCULATE statement.
..



- Deepak

Deepak Puri
Microsoft MVP - SQL Server

*** Sent via Developersdex http://www.developersdex.com ***



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.