user989988
user989988

Reputation: 3736

Use ADF Pipeline RUN ID as table name

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

enter image description here

Could you please suggest a workaround on this issue? Thank you!

Upvotes: 0

Views: 720

Answers (1)

Jason Welch
Jason Welch

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

Related Questions