Skip to main content

SSIS.Pipeline Description: "component "Excel Source" (570)" failed validation and returned validation status "VS_ISBROKEN"



Back Drop
                Being a rookie at SSIS  I managed to complete my first SSIS package for a client. The package included loading data from EXCEL data and CSV  files to SQL server and subsequently loading to the datamart.

Problem
                After deploying the package at the client environment the initial runs worked seamlessly but when the larger files were tested the a validation error stated to pop out. This was utterly confusing and for few hours I dint realize what the error message said in  plain text.

Note
 The current message is last of the validation errors and there was another ballistic message that appeared before this.

The error message
Executed as user: Microsoft (R) SQL Server Execute Package Utility  Version 10.50.1600.1 for 32-bit  Copyright (C) Microsoft Corporation 2010. All rights reserved.    Started:  1:28:45 p.m.  Error: 2012-10-05 13:29:38.05     Code: 0xC0202009     Source: Import XLSX Files Excel Source [570]     Description: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.  End Error  Error: 2012-10-05 13:29:38.09     Code: 0xC02020E8     Source: Import XLSX Files Excel Source [570]     Description: Opening a rowset for "browsing_details$" failed. Check that the object exists in the database.  End Error  Error: 2012-10-05 13:29:40.10     Code: 0xC004706B     Source: Import XLSX Files SSIS.Pipeline     Description: "component "Excel Source" (570)" failed validation and returned validation status "VS_ISBROKEN".  End Error  Error: 2012-10-05 13:29:40.15     Code: 0xC004700C     Source: Import XLSX Files SSIS.Pipeline     Description: One or more component failed validation.  End Error  Error: 2012-10-05 13:29:40.21     Code: 0xC0024107     Source: Import XLSX Files      Description: There were errors during task validation.  End Error  DTExec: The package execution returned DTSER_FAILURE (1).  Started:  1:28:45 p.m.  Finished: 1:29:40 p.m.  Elapsed:  54.812 seconds.  The package execution failed.  The step failed.


What I did
-          Removed all the spaces from the file name
-       Removed the leading numeric from the excel tab name ( it later occurred to me after speaking to my friends that SQL server does not like table name to have leading numeric)

Comments

  1. Later i realized that tab name names neede to be the same; in this instance "browsing_details" had to exists to proceed beyond the validation errors

    ReplyDelete

Post a Comment