Viewing 15 posts - 10,636 through 10,650 (of 13,879 total)
INSERT and INSERT INTO are identical - INTO is there only as a readability aid.
July 16, 2012 at 12:51 pm
There is no simple way of doing this.
I can think of three possibilities:
1) Output each row as a single column - you'll have to concatenate all the columns and add...
July 13, 2012 at 9:53 am
That does not look like a data conversion. After removing the quotes, I think you may need one of these.
July 13, 2012 at 4:26 am
simoniainsmith (7/13/2012)
Field is coming in as string, because if I set the column to DT_R8 then blank values which are quoted "" which causes a failure.
Hence why...
July 13, 2012 at 4:01 am
Have you defined the column as double precision in your flat file source?
If so, why do you talk about 'converting' to DT_R8?
July 13, 2012 at 3:20 am
Yes, but the Foreach loop (or some other technique) will still be required to take care of the varying file name ...
July 11, 2012 at 1:26 pm
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
Viewing 15 posts - 10,636 through 10,650 (of 13,879 total)