Viewing 15 posts - 10,636 through 10,650 (of 13,873 total)
Sounds like a foreach task containing a fairly simple dataflow to me. The Foreach task will enumerate over your import folder, looking for *.xslx (or similar) and passing the name...
July 11, 2012 at 1:08 pm
Mike Palecek (7/11/2012)
July 11, 2012 at 9:48 am
twdavis-893252 (7/10/2012)
I have this statement and want to update the a.upn_id with the value of b.upn_idSELECT * FROM PS_ITEM_MFG_UPN_FS A, PS_HM_UPC_CODE B
WHERE A.SETID=B.SETID AND A.MFG_ITM_ID=B.INV_ITEM_ID AND A.UPN_ID<>B.UPN_ID
thanks
Presumably you are...
July 10, 2012 at 10:11 am
I don't quite follow you.
Can you provide a couple of extra bits of information please?
1) Sample input data
2) Desired results, based on the input data provided.
If you follow the link...
July 10, 2012 at 9:44 am
OK. Your problem is possibly down to the fact that the WHERE clause is acting on the whole row at a time (and not just to date1, date2 etc individually).
You...
July 10, 2012 at 8:55 am
Add a Row_Number() column to both (with sorting as you require) and join on that - then the update becomes trivial.
July 10, 2012 at 8:18 am
Jeff Moden (7/9/2012)
Koen Verbeeck (7/9/2012)
It just happens to be that with a script task using .NET I have more control over...
July 10, 2012 at 6:41 am
Devesh_Srivastava (7/10/2012)
July 10, 2012 at 3:10 am
phoeneous (7/9/2012)
12 columns total, six money columns and...
July 10, 2012 at 1:50 am
What is the purpose of the foreach container?
July 10, 2012 at 1:34 am
Worth a test, though I would expect SQL to SQL to be the fastest.
July 9, 2012 at 7:07 am
SQLRNNR (7/7/2012)
I would use two file system tasks or perform the move via a script component.
I think you might mean a script task, and I agree.
The extra flexibility (and, I...
July 7, 2012 at 9:41 am
i.campbell (7/6/2012)
Ah ok... do you have any script code i could look at to fathom how to do this?thanks
Ian.
It was in a previous role and I don't still have the...
July 6, 2012 at 8:13 am
i.campbell (7/6/2012)
i have an SSIS package that loops round a recordset, it takes a file name and path and copies it into other directories, updates a DB entry and...
July 6, 2012 at 5:06 am
Viewing 15 posts - 10,636 through 10,650 (of 13,873 total)