Thanks for Approaching MicrosoftQ&A
The error message suggests that there is an issue with the schema of the source data. Specifically, the error message states that "Integral type has to be one of integer, short or long" and "Fractional type has to be one of double, float or decimal". This indicates that the schema of the source data may not be compatible with the schema of the target data.To resolve this issue, you may need to modify the schema of the source data to match the schema of the target data. You can do this by using a Select transformation in the Data Flow to select only the columns that are needed and to cast the data types to the appropriate types. For example, if the source data has an integer column that needs to be cast to a long, you can use the following expression in the Select transformation:
toLong(MyIntegerColumn)
Similarly, if the source data has a decimal column that needs to be cast to a double, you can use the following expression:
toDouble(MyDecimalColumn)
Once you have modified the schema of the source data, you can preview the data again to ensure that there are no more errors. If there are still errors, you may need to further modify the schema or investigate other potential issues with the data. It is also worth noting that the error message mentions that the issue is with the source 'Product' (Line 1/Col 0). This suggests that the issue may be with the first row of data in the source. You may want to investigate this row specifically to see if there are any issues with the data in this row that are causing the error.
if issue persists please let us know.