I would like to update values in mysql database in Azure Data Factory Copy Activity. Basically, I would like to update columns corresponding to file copy logging something similar to the example below
UPDATE database.filetable
set database.filetable.file_date = '@{utcNow()}'
WHERE database.filetable.file_id = 'xyz'
Is it possible? and what would be the correct way to do it. When this logic I get an error:
Failure happened on 'Source' side. ErrorCode=InvalidParameter,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=The value of the property 'schema' is invalid: 'Value cannot be null. Parameter name: schema'.,Source=,''Type=System.ArgumentNullException,Message=Value cannot be null. Parameter name: schema,Source=Microsoft.DataTransfer.ClientLibrary,'
