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.
Author |
Topic |
nithinpk
Starting Member
1 Post |
Posted - 2013-08-27 : 05:52:18
|
Hi All,In sql server 2008 (Cluster) one of the import job is failing with the below error. Please help me to resolve the issue.Error : Executed as user: TWUTIL\svc-db-user. Microsoft (R) SQL Server Execute Package Utility Version 10.50.4000.0 for 64-bit Copyright (C) Microsoft Corporation 2010. All rights reserved. Started: 08:57:46 Error: 2013-08-27 08:57:46.71 Code: 0xC020901E Source: Process the file Lookup [77] Description: Row yielded no match during lookup. End Error Error: 2013-08-27 08:57:46.71 Code: 0xC0209029 Source: Process the file Lookup [77] Description: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "component "Lookup" (77)" failed because error code 0xC020901E occurred, and the error row disposition on "output "Lookup Match Output" (79)" 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. End Error Error: 2013-08-27 08:57:46.71 Code: 0xC0047022 Source: Process the file SSIS.Pipeline Description: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component "Lookup" (77) failed with error code 0xC0209029 while processing input "Lookup Input" (78). 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. End Error DTExec: The package execution returned DTSER_FAILURE (1). Started: 08:57:46 Finished: 08:57:46 Elapsed: 0.5 seconds. The package execution failed. The step failed.Nithin P KBangalore |
|
yosiasz
Master Smack Fu Yak Hacker
1635 Posts |
Posted - 2013-08-27 : 23:18:49
|
Row yielded no match during lookup. do you have in your lookup a condition where row number is 0? how are you handling that. from the error it seems like you are not handling that scenario<><><><><><><><><><><><><><><><><>If you don't have the passion to help people, you have no passion |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2013-08-28 : 11:54:29
|
To avoid this error. you can set OnError action to Redirect Row To NoMatch Output and include a logic to capture those rows onto a table/file.------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/https://www.facebook.com/VmBlogs |
|
|
|
|
|