SSIS Error : "Conversion failed because the data value overflowed the specified type.".failed because error code 0xC0209087

  1. Error msg:
[Flat File Source [1]] Error: Data conversion failed. The data conversion for column "PoolOverage" returned status value 6 and status text "Conversion failed because the data value overflowed the specified type.".
[Flat File Source [1]] Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR.  The "output column "PoolOverage" (106)" failed because error code 0xC0209087 occurred, and the error row disposition on "output column "PoolOverage" (106)" 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.
[Flat File Source [1]] Error: An error occurred while processing file "\\xxxxx\Cr-sql-cpp\M2M\Dev\MonthlyUsage\processing\SIMSummaries\SIMSummaries-2014-03-22027344805.csv" on data row 1.
[SSIS.Pipeline] Error: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.  The PrimeOutput method on component "Flat File Source" (1) returned error code 0xC0202092.  The component returned a failure code when the pipeline engine called PrimeOutput(). The meaning of the failure code is defined by the component, but the error is fatal and the pipeline stopped executing.  There may be error messages posted before this with more information about the failure.
Description: this error is due to overflowed data for a particular column. The data type for the particular column is taken as “int” but the data in the file is larger than int
Solution:  we can change the data type of the particular column to” bigint” and check the data type given in the flatfile source connection if it is taken as 4byte int change to 8byte int .

Comments

Popular posts from this blog

SSAS : A connection cannot be made to redirector. Ensure that 'SQL Browser' service is running. (Microsoft.AnalysisServices.AdomdClient). + Solution

SSIS Error : Unable to infer the XSD from the XML file. The XML contains multiple namespaces