Forum Discussion

g3kuser's avatar
g3kuser
Icon for Helper II rankHelper II
1 year ago
Solved

Copy activity delimited file dynamic settings

I am try to setup dynamic settings to a file source with file type as Delimited Text. I want to setup column and row delimiter and header row properties. I see there is an option to set dynamic expre...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi g3kuser ,

     

    In the file format setting of the Copy activity, the parameter information needs to meet the format similar to the following:

    "source": {
      "type": "DelimitedTextSource",
      "storeSettings": {
        "type": "AzureBlobStorageReadSettings",
        "columnDelimiter": "@pipeline().parameters.columnDelimiter",
        "rowDelimiter": "@pipeline().parameters.rowDelimiter",
        "skipLineCount": "@pipeline().parameters.skipLineCount"
      }
    }

    If the problem persists, providing specific error messages and configuration snippets facilitates my further diagnosis.

     

    Best Regards,
    Adamk Kong

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.