Viewing 15 posts - 511 through 525 (of 893 total)
Duplicate thread...see responses here: http://www.sqlservercentral.com/Forums/Topic1667791-17-1.aspx
March 18, 2015 at 4:17 pm
sergio.eduardo.linares (3/18/2015)
The cube is based in the tables Fact, [Dim_Store] and [Dim_Elem]. [Fact] table is a measure group, the structure is very simple.If you need more information please tell me.
Thanks
Yes,...
March 18, 2015 at 12:46 pm
Can you share more information on how you've implemented the roles?
March 18, 2015 at 12:29 pm
sergio.eduardo.linares (3/18/2015)
but i get Cero in all cases.Store_1 -> 0
Store_3 -> 0
Without more detailed information it is pretty difficult to assist you more. Could you please provide our query and...
March 18, 2015 at 12:20 pm
sergio.eduardo.linares (3/18/2015)
this indicates that in the store_1 there is one element and in the Store_3 one element, but when insert new fact, by example, insert...
March 18, 2015 at 11:48 am
A few questions to see if everything is in place:
Do you have the type property set to "Year" for the year attribute in your dimension. According to BOL, the YTD()...
March 18, 2015 at 11:09 am
sergio.eduardo.linares (3/17/2015)
how to make this SQL Query:
select a.Id_Store, count(distinct a.Id_Elem)
from Fact a inner join (
select Id_Elem, max(Id_Fact) as Id_Fact from Fact
group by Id_Elem) x on
a.Id_Elem = x.Id_Elem and
a.Id_Fact...
March 18, 2015 at 10:56 am
Please don't post duplicate questions/threads. Rather update the original with more information.
Original thread is here: http://www.sqlservercentral.com/Forums/Topic1669062-17-1.aspx#bm1669295
March 17, 2015 at 4:24 pm
Your last sentence seems to contradict the rest.
Could you please clarify...do you need to get a distinct count of elements (i.e. 2 for the first range you mentioned), or...
March 17, 2015 at 3:07 pm
How about something like this:
...
where{
{{[Month].[Year Month Hierarchy].[Calendar Year].&[2015].&[2015Q1].&[201503]}
* {[Status].[Status].&[Active]}
}
+
{
{{[Month].[Year Month Hierarchy].[Calendar Year].&[2015].&[2015Q1].&[201502]}
* {[Status].[Status].&[Inactive]}
}
MDX Reference: https://msdn.microsoft.com/en-us/library/ms145493.aspx
March 17, 2015 at 3:03 pm
seaport (3/17/2015)
Thanks for the quick reply
In the Advanced Tab, I still have to go through each attribute, right?
Also, I am trying to figure out how this "Advanced" Tab works. So...
March 17, 2015 at 10:16 am
seaport (3/17/2015)
It looks like I cannot deny access at the dimension level. I have to deny...
March 17, 2015 at 9:27 am
ttdeveloper (3/17/2015)
Spot on - redesigned the composite keys and the relationship (attached). Hierarchies are now fixed. This is awesome.
Thanks for your help as always.
So - I guess just for my...
March 17, 2015 at 8:31 am
From what you are describing here, it doesn't seem like you are really solving the problem by creating a dimension for all your different types of calculations. You will still...
March 16, 2015 at 5:22 pm
I would start by checking for locks in the destination. If you have multiple packages executing in parallel and writing to the same tables, you may be creating a deadlock...
March 16, 2015 at 5:18 pm
Viewing 15 posts - 511 through 525 (of 893 total)