I need to multiply a number which is like these 00000000001099 with 0.01 and then convert into two decimal places for e.g., 10.99 after multiplication in a derived column in SSIS package.

Right now I am using these expression (dt_numeric,2,2)((DT_CY)((dt_wstr,14)PRICE) * 0.01) but it is failing.

I get the column price with value 00000000001099 from a flat file after conversion I need to place the value back to a flat file again.

link|improve this question

42% accept rate
feedback

3 Answers

up vote 0 down vote accepted

Since your string is 14 long you cannot use DT_I4 - it'll just figure out that this is very wrong and give you the error about potential loss of data. You could edit the error and ignore possible truncations, but a better way is to use a datatype that can hold your number

Your Derivation should look like this:

(DT_NUMERIC,X,2)((DT_NUMERIC,X+2,2)([InputColumn]))*0.01)

In your example

(DT_NUMERIC,14,2)(((DT_NUMERIC,16,2)([PRICE]))*0.01)

By using the extra step with x+2,2 makes you able to hold 99999999999999 into the numeric, then divide by 100 (or multiply with 0.01) and cast back to the minimum possible numeric (x,2) - you might want to use a bigger standardized numeric type - look at MSDN/BOL to see the storage requirements for each of them, and just pick the biggest type taking the same amount of bytes as your requirement.

link|improve this answer
(This will also strip leading zeroes) – cairnz Mar 4 '11 at 10:10
I am using your exp still i am getting the error as Type cast [Derived Column [96]] Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "component "Derived Column" (96)" failed because error code 0xC0049064 occurred, and the error row disposition on "output column "test" (1723)" specifies failure on error. An error occurred on the specified object of the specified component. There may be error messages posted before this with more information about the failure. No truncation error now..Any suggestion? – lch Mar 4 '11 at 14:32
Somewhere in your data is invalid input, meaning something that doesn't translate to a number. Make a path with error and redirect error rows on the derived column step and hook up a data viewer to look at the lines where conversion fails. – cairnz Mar 9 '11 at 9:10
exactly i got it i used the data viewer to fing there are some null in the incoming file thanks for your help – lch Mar 9 '11 at 21:47
You can wrap it all in a !ISNULL([PRICE]) ? EXPRESSION : (DT_NUMERIC,14,2)0.00 to make it process NULL as zero values. – cairnz Mar 10 '11 at 10:34
feedback

This should work...

(DT_DECIMAL, 2 )(DT_WSTR, 20 )((DT_I4)@[User::Cost] * 0.01)
link|improve this answer
Thanks for reply, but still i am getting the type cast error and one more thing the cost value is coming from the flat file where i used Ragged right to extract the field from 21 to 35 position (i.e..,14 length) i am not storing in a variable any suggestion? – lch Mar 3 '11 at 16:19
Sorry, the variable was what I was using to test the expression, apologies for any confusion! Can you post the error message you are getting? – revelator Mar 3 '11 at 16:23
Here is the error message: – lch Mar 3 '11 at 16:29
[Derived Column [96]] Error: An error occurred while attempting to perform a type cast. – lch Mar 3 '11 at 16:30
[Derived Column [96]] Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "component "Derived Column" (96)" failed because error code 0xC0049064 occurred, and the error row disposition on "output column "Derived Column 1" (1600)" specifies failure on error. An error occurred on the specified object of the specified component. There may be error messages posted before this with more information about the failure. – lch Mar 3 '11 at 16:30
show 9 more comments
feedback

While the value 00000000001099 is a number, it cannot be represented this way in a numeric datatype. The leading zeros will be stripped. Because you are showing this number this way, I must presume the number is stored in a string datatype. In the dataflow before your derived column I would recommend the use of the "Data Conversion" component. Convert the string to a numeric type. In the downstream derived column component perform the mathematical multiplcation operation to get the decimal point in the correct place.

link|improve this answer
thanks for reply,but i am get the following error [Data Conversion [1691]] Error: Data conversion failed while converting column "PRICE" (18) to column "PriceDC" (1699). The conversion returned status value 2 and status text "The value could not be converted because of a potential loss of data.". – lch Mar 3 '11 at 19:06
need help plz... – lch Mar 3 '11 at 21:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.