Reputation: 3736
I'm trying to use ADF pipeline RUN ID as table name. On running the pipeline, I see the following error:
EDIT
table name contains invalid characters
Could you please suggest a workaround on this issue? Thank you!
Upvotes: 0
Views: 720
Reputation: 986
From here the name has to be alpha and start with a letter so how about this dynamic content:
tbl@{replace(pipeline().RunId,'-','')}
Upvotes: 2