Viewing 15 posts - 436 through 450 (of 451 total)
How did you want the results to appear? Are you trying to sum something up, get a distinct list of employees?, ...
If you are trying to get a distinct...
May 22, 2012 at 12:42 pm
With no ORDER BY clause in your SQL, you're not guaranteed any particular order; SQL is set based. If the data is the same between both servers, then you're...
May 20, 2012 at 8:21 pm
It looks like MS has moved/removed the 2008 .msi installer as near as I can tell. All of the historical links I found showed a redirect message that the...
May 18, 2012 at 9:39 pm
I think a little Bing or Google work could have found this for you.
Try looking at:
http://msftdbprodsamples.codeplex.com/
Download & follow the installation instructions.
HTH,
Rob
May 18, 2012 at 5:43 am
Are you trying to run the SSIS package in the same place (same machine, same account) the second time where you get the connection error as when you ran it...
May 18, 2012 at 5:38 am
You can parse out the pieces of the string you need using the Derived Column Transformation inside a Data Flow Task.
If you are just beginning with SSIS, take a look...
May 17, 2012 at 7:20 am
evolution_mark (5/15/2012)
im saying that the other system that we interact with uses this as part of the key
So your source system's natural/business keys contain non-printable (e.g. ASCII character(0)) characters. ...
May 15, 2012 at 12:41 pm
I think the answer is to remove the non-printable characters from the underlying data in the DW and reprocess. Is there a reason why you want to preserve these...
May 15, 2012 at 8:00 am
Let me see if I understand what you're saying: You have a dimension, let's call it Customers that's the same on your two servers' SSAS dbs (let's call them...
May 15, 2012 at 7:52 am
I like the ideas that Andy Leonard has incorporated into his SSIS framework and have rolled these into my package design templates. He uses a parent package to loop...
May 14, 2012 at 12:05 pm
Like previous poster said, keep your eyes open while you learn the new technologies. Having a SQL Server background along with some Oracle/Cognos knowledge could make you even more...
May 11, 2012 at 9:46 am
Can you try running them sequentially? Load all of Table 1, then Load all of Table 2. Give this a try. Does this shed any light on...
May 10, 2012 at 1:31 pm
How many tables are you writing to the Access db? Are you writing the records in parallel or in sequence?
Simple question, but if it works for one table, does...
May 9, 2012 at 5:46 am
In a Derived column transform, you can do something like:
[font="Courier New"]RIGHT(Field1,1) == "," ? SUBSTRING(Field1,1,LEN(Field1) - 1) : Field1[/font]
I didn't check for an empty string or other possible problems, but...
May 7, 2012 at 7:17 am
If you're just looking for documentation purposes, I've just opened the OLE DB Destination (or whatever destination you're using in your Data Flow Task) and did a screen capture with...
May 3, 2012 at 8:46 am
Viewing 15 posts - 436 through 450 (of 451 total)