Hi @sakuraime ,
Thank you for posting your Query.
It seems, when we use Copy activity, we cannot control the data types of Sink. Its going to be automatically mapped by system.
If we would like to have control on datatype of Sink too, then we can go with data flows.
We can make use of derived column transformation in data flows, to convert datatype of any input column.
For example, lets say we have ID column in source with type string and we want convert its type to int, then we can use expression toInteger(ID)
inside derived column transformation