Informatica writes rejected rows into a bad file, how to avoid that?

吃可爱长大的小学妹 提交于 2019-12-04 14:43:57

Put a filter transformation before the update strategy transformation and filter away the bad rows

Well, typically when we check for presence of a row in target, the decision is between insert and update, however, thats a business decision.

Till the time you are marking rows as dd_reject, they would be written to a bad file. Avoiding bad file can meqn mul6things here...

One, to not have the file created at all... use a filter to block the rows...you dont need update strategy for that...a simple filter should be good enough.

Second, if you want to process ur rows differently, dont mark them as reject, use a router and process them differently...

hope to help,

raghav

If you don't need rejected rows you can uncheck the option in update strategy "Forward rejected rows"

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!