Viewing 15 posts - 12,151 through 12,165 (of 13,849 total)
I am wondering whether the fact that you used file-level copy with the packages has confused SSIS because of the duplicate IDs all over the place.
You may like to try...
April 14, 2010 at 12:48 am
Sorg should be joined to source_id, not destination_id.
The rest should be ok ... as long as you do not need sorg later on in the dataflow.
April 13, 2010 at 1:58 pm
Build a mapping table (OldID, NewID) and then use a Lookup transformation to lookup the new ID based on the old ID ... much easier than building a mega-complicated nested...
April 13, 2010 at 7:39 am
How did you make the copies?
This also sounds like a maintenance nightmare for the future. Is there any reason why you don't do all the processing in the same package?
April 13, 2010 at 3:09 am
Puzzling.
OK, please try opening the advanced editor for your data source.
Have a look at Input and Output properties. Check External and Output columns for SectionTitle - should be TextStream (at...
April 12, 2010 at 8:50 am
murugappan.kathiresan (4/12/2010)
This is my scenario...
I've one excel file, in that file i've one column called Allowance which has only numeric values if it is 0 then the user will enter...
April 12, 2010 at 5:55 am
Try putting a data conversion task after your source component. Convert the text field to string(4000) and map the converted field to your destination.
April 12, 2010 at 5:41 am
Are you saying that the data type of Allowance is numeric?
That would suggest that "-" is a valid numeric entry - as far as I know, it is not.
April 12, 2010 at 5:28 am
So ... the data type of your derived column must also be float?
But you are setting the value of this column to Allowance, which is a string ...
April 12, 2010 at 5:11 am
What's the datatype/length of 'LongDescription'?
April 12, 2010 at 4:55 am
What is the data type of Allowance?
April 12, 2010 at 4:47 am
No. You use SQL Server Business Intelligence Development Studio (BIDS) to edit packages.
April 11, 2010 at 12:24 pm
Jason Coleman (4/9/2010)
Seems strange though that the final task seems to transform the data on its own. even if u tell it...
April 9, 2010 at 8:25 am
Once you have a string field which contains, for example .75
you can add a derived column that prepends a 0
the string is then 0.75 and that is what will go...
April 9, 2010 at 7:20 am
Viewing 15 posts - 12,151 through 12,165 (of 13,849 total)