Viewing 15 posts - 151 through 165 (of 205 total)
Thanks for the hint. I ended up using Now().ToShortTimeString.
October 8, 2010 at 12:25 pm
Thank you for your help. Wouldn't an Execute SQL Task on an Oracle table require a linked server? Also, I've been told that I will have very limited...
October 8, 2010 at 12:23 pm
I've created the Script Task and a variable, but I have no idea how to get the Script Task to assign the time of day to the variable.
October 7, 2010 at 3:03 pm
Thanks! Do I need a script task for this or some other kind of task?
October 7, 2010 at 2:29 pm
I have partially answered my own question. If I check by
If
source.Inventory_Item_Id = destination.Inventory_Item_Id
AND
source.Creation_Date = destination.Creation_Date
AND
source.Last_Updated_Date <> destination.Last_Updated_Date
That won't take into account deleted records. So...
October 7, 2010 at 2:25 pm
Also, is the looping process that the boss wants really necessary? Is breaking up the data into 15-day chunks going to improve performance or slow it down? After...
October 7, 2010 at 12:19 pm
How about this?
If
source.Inventory_Item_Id = destination.Inventory_Item_Id
AND
source.Creation_Date = destination.Creation_Date
AND
source.Last_Updated_Date <> destination.Last_Updated_Date
Then start "reconciliation" process.
Can I use a Lookup to do this? Will this properly prevent too many source rows...
October 7, 2010 at 12:17 pm
Thanks for the insight! I have done some research on CDC, which is leading me to more questions. Is it okay for me to start a new thread...
October 6, 2010 at 4:13 pm
The boss would like us to move toward an MDM scenario. Where can I learn more about that in a Microsoft context?
October 6, 2010 at 11:13 am
Informatica was used extensively at my previous job. In fact, my bosses asked us to do proof-of-concept comparisons between SSIS 2005 and Informatica (I forgot which version). Here...
October 6, 2010 at 11:09 am
Yes, but he wants me to compare and change the data in 15-day chunks. Would putting that into a loop necessarily boost performance?
October 5, 2010 at 11:01 pm
I agree, but my boss thinks the performance will be better if I break the data up into 15-day chunks. Do you think that would be necessary? It...
October 5, 2010 at 10:50 pm
We are using SQL Server 2008 R2. From what I understand, we are going to deal with about a million rows.
October 5, 2010 at 10:37 pm
The Slowly Changing Dimension worked very well, thanks!
October 4, 2010 at 5:07 pm
Thanks to you, I think I'm gaining an understanding of Findstring, except for one thing: how do figure out the LAST occurrence of the "\" character within the string?
June 14, 2010 at 4:26 pm
Viewing 15 posts - 151 through 165 (of 205 total)