Hi @Sharma, Ankush Kumar
Welcome to Microsoft Q&A platform and thanks for posting your question here.
Azure Data Factory is able to handle decimal values while using copy activity because it supports data type mapping between the source and sink columns.
The error message indicates that the given value of type Decimal from the data source cannot be converted to type decimal of the specified target column. The error message also indicates that the parameter value '-900.0000000000000000' is out of range. This error occurs when the decimal value in the source data is not compatible with the decimal data type in the target column.
To resolve this issue:
Need to ensure that the data type, precision, and scale of the source column and the target column are compatible with each other. If they are not compatible, you can modify the target column to match the precision and scale of the source column or use a data conversion activity to convert the data type of the source column to match the data type of the target column.
Reference:
I hope this information helps you. Let me know if you have any further questions or concerns.