Data Flow Derived Column

Sharukh Kundagol 145 Reputation points
2024-02-05T07:43:13.7+00:00

Hi Team, I have a dataflow which takes 3 paramters as schema,table and column name. dataflow has derieved activity which append(concat($col,"1")) some string say '1' to the column name that we passed. but when i am running validating the data flow with below details schema -- 'aaa' table --'bbb' column -- 'Retry_count' it is giving data like 'Retry_count1' which is taking column as string value rather than actual column User's image

but when i am passing as below it is throwing error schema -- 'aaa' table --'bbb'

column -- Retry_count

User's image

Error: but column is there in the table User's image

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
11,640 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Subashri Vasudevan 11,231 Reputation points
    2024-02-05T09:59:56.2633333+00:00

    Hi Sharukh Kundagol Debug settings window lets you provide temporary value to the data flow parameters , with which you can do a debug preview of data.

    Having said that, the value you pass to column -- Retry_count is not valid. You have to enclose the Retry_Count inside single quote. like 'Retry_count', same way how you pass aaa, bbb.

    If you dont want to pass anything to Col, simply pass '' in the debug settings. This will make sure you can debug the data flow without errors. If you have further question or need more explanation, please do let us know. Thanks


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.