Viewing 15 posts - 166 through 180 (of 183 total)
WITH
MEMBER [Measures].[PrevPeriodBalance] AS
Sum
(
NULL : [Period Dim].[Month Name].&[100022]
,[Measures].[Amount]
...
June 16, 2010 at 10:01 am
Is your date "[Period Dim].[Month Name].&[100022]" a hierarchy?
This may be a good starting point to troubleshoot your issues:
June 16, 2010 at 9:46 am
Seems you have done all the things I would have done already... 😉
I would probably next try to create the resultset in SSMS (Analysis Services) by browsing the cube
Or
Use the...
June 15, 2010 at 9:04 am
Have you tried replacing the .Children with .Members (or .AllMembers) via your OLE DB data connection?
You may have to specify an additional scope level like this:
[Questionnaire].[Questionnaire Question Order].[Questionnaire Question Order].MEMBERS
June 15, 2010 at 8:35 am
SELECT
{[Measures].[Survey Count]} ON COLUMNS
,NON EMPTY
{
[Customer].[First Name].[First Name].MEMBERS*
...
June 15, 2010 at 8:23 am
SELECT
NON EMPTY
{[Measures].[Survey Count]} ON COLUMNS
,NON EMPTY
{
[Customer].[First Name].[First Name].MEMBERS*
...
June 15, 2010 at 7:24 am
So if you review your dimension usage in the cube, there should be a relationship type between your Measure group [Questionnaires] and [Customer] dimension.
This should be a regular relationship.
The information...
June 15, 2010 at 7:04 am
danielagger98 (6/15/2010)
Can you please elaborate?
Your fact tables relating to Questionnaires - do they contain IDs or references to other dimensions?
[[Sorry - of course they do :discuss: - they should have...
June 15, 2010 at 6:55 am
danielagger98 (6/15/2010)
Yes it does, I dont want to put it on rows either. It throws system out of memory exception. Because it has to cross join so many fields.
If you...
June 15, 2010 at 6:42 am
DECLARE @countnotification INT
SELECT @countnotification = COUNT(*)
FROM [SR]
PRINT @countnotification
Change the print part to your netsend command.
Without more information, cant really comment on whether you need a...
June 15, 2010 at 5:24 am
Very elegant solution!
I "played around" with the positions but couldnt remove the leading space without this:
Country = LTRIM(SUBSTRING(Col1, Pos1+1, Pos2-Pos1-1))
June 15, 2010 at 2:40 am
Does it work if you remove the Questionnaire details from the "On Columns":
SELECT
{[Measures].[Survey Count]} ON COLUMNS
,NON EMPTY
{
...
June 15, 2010 at 2:31 am
I have run out of time today but here is a start:
CREATE TABLE CountryFull
(
ItemDescription VARCHAR(99)
)
INSERT ...
June 14, 2010 at 10:33 am
Create a role group with read-only permissions and assign users to that role group.
Do you have RedGate's Multi-Script?
If not you may need to create a script which uses EXECUTE sp_msforeachdb
This...
June 14, 2010 at 10:09 am
My first piece of advice would be to start off small and add to it until you get the desired results
Also, your assumption is correct regarding dimensionality.
I found this tool...
June 14, 2010 at 10:03 am
Viewing 15 posts - 166 through 180 (of 183 total)