Share via

Pipeline Issue

Rohit Kulkarni 441 Reputation points
2021-03-17T15:00:35.287+00:00

Till Yesterday i pipeline was working on fine.But today suddenly got issue :

78881-image.png

Not able to run the pipeline ..Please advise

Regards
RK

Azure Data Factory
Azure Data Factory

An Azure service for ingesting, preparing, and transforming data at scale.

0 comments No comments

Answer accepted by question author

Nasreen Akter 10,896 Reputation points Volunteer Moderator
2021-03-17T18:51:02.713+00:00

@Rohit Kulkarni ,

I think you probably need this:

Conatiner: @pipeline().parameters.RawContainer

Folder: @{pipeline().parameters.RawFolder}/@{item()}/Tables/@{pipeline().parameters.TableName}

FileName :@{pipeline().parameters.TableName}_@{item()}.@{pipeline().parameters.RawFileFormat}

Was this answer helpful?

0 comments No comments

4 additional answers

Sort by: Most helpful
  1. Vaibhav Chaudhari 39,011 Reputation points Volunteer Moderator
    2021-03-17T18:14:36.623+00:00

    Is there any reason behind using array type for Company Name parameter?

    You could try make it as String and it will form the right path

    Edit #1 - Also as suggested by Nasreen -

    instead of
    pipeline().parameters.CompanyName
    try
    pipeline().parameters.CompanyName[0]


    Please don't forget to Accept Answer and Up-vote if the response helped -- Vaibhav

    Was this answer helpful?


  2. Nasreen Akter 10,896 Reputation points Volunteer Moderator
    2021-03-17T17:39:01.383+00:00

    Hi @Rohit Kulkarni ,

    As the CompnyName is an Array, you could try the following:

    Conatiner: @pipeline().parameters.RawContainer  
      
    Folder: @{pipeline().parameters.RawFolder}/item().CompanyName[0]/Tables/item().TableName  
      
    FileName :@{pipeline().parameters.TableName}_{item().CompanyName[0]}.pipeline().parameters.RawFileFormat  
    

    Hope this helps! Thanks! :)

    Was this answer helpful?


  3. Rohit Kulkarni 441 Reputation points
    2021-03-17T17:17:53.633+00:00

    Guys i am near to the issue but i am getting error Please advise me how to remove [] .I need to display only Group O from the path :

    78829-image.png

    Thanks in Advance
    RK

    Was this answer helpful?

    0 comments No comments

  4. Rohit Kulkarni 441 Reputation points
    2021-03-17T15:31:56.067+00:00

    I have made some changes in the parameter. But still i am getting error. I think some where in the syntax is getting error :

    78794-image.png

    78845-image.png

    Conatiner :@pipeline().parameters.RawContainer

    Folder :@{pipeline().parameters.RawFolder}/item().CompanyName/Tables/item().TableName

    FileName :@{pipeline().parameters.TableName}_{item().CompanyName}.pipeline().parameters.RawFileFormat

    Please advise

    Thanks in advance
    RK

    Was this answer helpful?

    0 comments No comments

Your answer

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