Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2008 Forums
 SSIS and Import/Export (2008)
 Row yielded no match during lookup.

Author  Topic 

sgandhi
Posting Yak Master

115 Posts

Posted - 2009-06-10 : 14:47:24
I am getting the following error on a lookup table.

Can anyone help. Im not sure if i want to redirect the rows, whats the best approach to fix this

[LKP_B2R_Geography [795]] Error: Row yielded no match during lookup.

[LKP_B2R_Geography [795]] Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "component "LKP_B2R_Geography" (795)" failed because error code 0xC020901E occurred, and the error row disposition on "output "Lookup Match Output" (812)" 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.

[SSIS.Pipeline] Error: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component "LKP_B2R_Geography" (795) failed with error code 0xC0209029 while processing input "Lookup Input" (808). The identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop running. There may be error messages posted before this with more information about the failure.

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2009-06-11 : 13:09:23
this is because you have set on error option as fail component from lookup task. if you want to ignore these non matching rows without causing error, give onerror option as ignore failure. and if you want to review these non matching rows later give redirect row and then attach a flat file destination to error output to get non matching rows for later reference.
Go to Top of Page
   

- Advertisement -