I am using a 'mapping data flow' activity in ADF to extract and load some records. I have created 2 parameters in the data flow activity - table_name, schema_name - which I'm trying to use to make the same activity work for multiple tables.
In the Source Options tab on Source(within data flow activity) I have the following query -
select * from '{$SchemaName}'.'{$TableName}'
I'm getting the following error message when I debug -
{
"message": "Job failed due to reason: at Source 'source1'(Line 2/Col 11): Column operands are not allowed in literal expressions. Details:at Source 'source1'(Line 2/Col 11): Column operands are not allowed in literal expressions",
"failureType": "UserError",
"target": "GetLatestData",
"errorCode": "DFExecutorUserError"
}
Anyone have any thoughts on what I'm doing wrong?



