Hi All,
I've very simple ssis package which has sequence container in the Control Flow Then Inside the sequence container i'm using "DataFlow Task".Within the DataFlow Task ( Data Flow) i've 2 data flows , 1 has ADO.NET Source which is reading data from MSSQL DB & pass it to Data Conversion,then it'll update the destination table using ADO.NET Destination.The second DataFlow Task has ADO.NET Source whic read data from MSSQL DB via Sql Command , The Sql query is this
"SELECT EXP_Discounts.* FROM EXP_Discounts INNER JOIN EXP_DiscountsByLocations ON EXP_Discounts.Id = EXP_DiscountsByLocations.DiscountId WHERE EXP_DiscountsByLocations.LocationId = " + (DT_WSTR, 8) @[User::LocationId]
I've Int16 variable which i'm using for this query ( EXP_DiscountsByLocations.LocationId is SmallInt DataType Field ),the query is evaluating is successfull & every thing is works fine with TranactionOption="Supported". But the problem is when set to package & sequence container property TranactionOption="Required" it'll giving this warning "SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED" & package is not executing & all stops.
So can anyone encounterd this type error or any suggetion u guys ? :)
Thanks & Regards,
Dimuthu