top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Informatica error =[ERROR('transformation error')]

0 votes
1,552 views

I am getting the following Informatica error:

Note: Output column [AGENT_DISPOSTION_CODE] has no default value. Row will be skipped if transformation errors are encountered MAPPING> DBG_21056 column=[PHONE_NUMBER], defaultvalue=[ERROR('transformation error')]

How can I fix it?

posted Aug 12, 2014 by Sunil

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

It's not an error, it's only an information that you have a port with a default value set to ERROR('transformation error'), so Integration Service will skip the NULL values with an ERROR function.

The Designer inserts this expression automatically, when you add a new output port; you can change it. Edit the expression, find the port on the Ports tab and check the Default value field at the bottom:
enter image description here

The ERROR function causes the Integration Service to skip a row and issue an error message, which you define.

answer Aug 19, 2014 by Shweta Singh
...