Viewing 11 posts - 46 through 56 (of 56 total)
invaliddba (1/16/2012)
As part of backup plan for SSIS packages if the SSIS goes down,
Just wanted to share how i had burnt my hands a while ago!
I've opted to deploy...
January 17, 2012 at 6:05 am
You are correct. This is introduced only in R2.
January 17, 2012 at 5:10 am
Simply Put:
MOLAP must be used when query performance is important. Cubes data and aggregations are stored on SSAS server in this mode. But, data changes in the source doesn't automatically...
January 17, 2012 at 5:07 am
I'm sure there will be more efficient ways, but something like this can get the job done.
CREATE TABLE #Customers
(
LastName VARCHAR(30)
) ;
INSERT #Customers
VALUES ('Vanga') ;
INSERT #Customers
VALUES ('Va12gf3') ;
SELECTLastName AS LastNameWithNumbers
FROM#Customers
WHERELastName...
January 16, 2012 at 9:47 am
Following is an article that might help you. It's using SSIS 2005, but clearly explains all the concepts.
http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/62063/
November 28, 2011 at 7:42 pm
It doesn't sound like you're missing something.
I would make sure that cube has been processed,if not processed already, and that calculation is not erroring out.
November 28, 2011 at 12:49 pm
MaBear (11/17/2011)
November 21, 2011 at 11:46 am
Koen Verbeeck (11/17/2011)[hrDoes the JET provider (or ACE for 2007 and up) recognise the DISTINCT keyword? If it does, that would be great.
Turns out it doesn't. I just learned this
Earlier...
November 18, 2011 at 8:02 am
Staging data into a table is the best and cleanest way as suggested above.
But if for some reason you dont want to use this approach, you could try...
November 17, 2011 at 11:49 am
Thats correct. There are too many to list.
Step by Step books from microsoft press are also good places to start.
Check out SSAS tutorials on msdn, stairway to integration services[/url], and...
November 17, 2011 at 11:29 am
Viewing 11 posts - 46 through 56 (of 56 total)