Reputation: 3746
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?
Upvotes: 1
Views: 4807
Reputation: 563
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:
Here is the script activity settings:
Upvotes: 2