Viewing 15 posts - 316 through 330 (of 596 total)
You need to use a process incremental. If you are doing this from SSIS you can use variable expressions to build XMLA to process only new data.
December 8, 2014 at 1:49 pm
Process Update is for dimensions only, not facts. I take it you are talking about facts since you can't partition dimensions.
December 8, 2014 at 1:26 am
With the following you would be selecting everything:
UNION({[Question].[Classification Name].&[Overall Experience]},
STRTOSET("[Question].[Classification Name].[All]", CONSTRAINED)))ON COLUMNS
You are choosing a specific member followed by the All member. Also you seem to be using UNION...
December 8, 2014 at 1:23 am
I've done this before in SSAS.
Basically, all of your SCD 2 logic should be in your source data - so your surrogate keys in your facts map to the...
December 5, 2014 at 2:05 am
In that case you can use the same logic. For 2008 in the Precedence Constraint simply evaluate the value (which I'm assuming is a variable at this point) to itself...
December 5, 2014 at 1:20 am
In your SQL Agent job step where it asks for server, use the target server (this is where the script will be executed and what you will synchronize to).
December 4, 2014 at 6:52 am
Hi Tony,
This is a good question and the answer is.......it all depends 🙂
If you go with your first solution, yes it would affect processing and size and you'd be best...
December 3, 2014 at 2:40 am
Without knowing any more detail it's impossible to provide you with any sort of solution. Firstly as a guideline, just imagine creating the code in T-SQL, think of all of...
December 2, 2014 at 7:40 am
Have a read of the following: download.microsoft.com/download/8/5/e/85eea4fa-b3bb-4426-97d0-7f7151b2011c/SSAS2005PerfGuide.doc
Pay attention to the Processing and Server Tuning parts.
Have you tried a trace on your source SQL instance to see if it could...
November 27, 2014 at 5:27 am
er.deepikagoyal (11/25/2014)
That's the reason i have landed up making 15 different cubes. any solution...
November 25, 2014 at 3:00 am
Okay, this is tabular right? Even if it's multi-dimensional you don't need a separate cube for each fact table. You can have 1 cube and use either perspectives (http://msdn.microsoft.com/en-us/library/gg492105.aspx) or...
November 25, 2014 at 2:46 am
If you're not going to use the fact table anyway then why bother importing it? Just ignore it and import the one that you actually need.
November 25, 2014 at 2:37 am
er.deepikagoyal (11/25/2014)
Quick questions :
1. How to process whole SSAS database : In SSIS, i can see option of processing only Cube
2. Every time processing the whole...
November 25, 2014 at 2:18 am
What I mean is you need to process the whole AS database, not just the cube.
As for restricting what is seen in excel when a user connects, you can...
November 25, 2014 at 2:08 am
Viewing 15 posts - 316 through 330 (of 596 total)