I have the script activity in ADF pipeline:
On running this, I see the following error. What does this indicate and how do fix this?
I have the script activity in ADF pipeline:
On running this, I see the following error. What does this indicate and how do fix this?
You are trying to make tableName dynamic. It won't work like that. Better create a variable and use Set variable activity to set the tableName. Then use the same in your script Activity.
select * from @{variables('tableName')} where id=@id
Set variable activity settings:
