Fixing the No Data Supplied for Parameters issue in SSIS during the SQL Server to MySQL migration
Daniel Marino
13 November 2024
Fixing the "No Data Supplied for Parameters" issue in SSIS during the SQL Server to MySQL migration

It can be annoying to run across a "No data supplied for parameters" problem while utilizing SSIS to migrate from SQL Server to MySQL. In this case, the ADO.NET Destination component's parameter problems prevented a straightforward test table from transferring. After trying a number of workarounds, the most successful ones were modifying the SQL Mode settings and writing a C# script to manage parameterized queries. By confirming row counts, a unit test set up in NUnit further guaranteed data consistency and facilitated efficient troubleshooting and validation of the migration process.

Resolving Derived Column Conversion Errors in SSIS: DTS_E_INDUCEDTRANSFORMFAILUREONERROR
Daniel Marino
9 November 2024
Resolving Derived Column Conversion Errors in SSIS: DTS_E_INDUCEDTRANSFORMFAILUREONERROR

When transforming data, including postcodes, it is crucial to handle SSIS derived column errors, particularly the DTS_E_INDUCEDTRANSFORMFAILUREONERROR. When non-numeric or null values enter integer fields in SQL Server Integration Services (SSIS) packages, conversion issues frequently occur. Developers can fix problems before they interfere with data flows by utilizing conditional expressions, validation, and error output options. This proactive strategy minimizes delay brought on by data type inconsistencies and guarantees more efficient package execution and troubleshooting. These methods increase the resilience and dependability of data handling in SSIS.