ADF Mapping Data Flows: Alter Row Transformation

Поділитися
Вставка
  • Опубліковано 7 лис 2024

КОМЕНТАРІ • 17

  • @Alicia_BPHC
    @Alicia_BPHC 8 днів тому

    Thank you 🦋

  • @DrDiabolical000
    @DrDiabolical000 24 дні тому

    Thanks a lot man!

  • @kenichisegawa3981
    @kenichisegawa3981 3 роки тому +1

    How do you allow delete in the sink for file type scenario by using alter row transformation? Is there any link or documentation for that?

  • @harithamarripudi5622
    @harithamarripudi5622 8 місяців тому

    Hi, sir. Could you please help me with connecting/sending the ADLS, containing delta Parquet data, to MySQL Server as an SQL table using data flow in Azure

  • @bobreddert7547
    @bobreddert7547 Рік тому

    Good tutorial. However I got to the end thinking that UPSERT would also be covered (it was not)

  • @NeumsFor9
    @NeumsFor9 2 роки тому

    Any idea what would cause a "code not found for stream" error?

  • @PatrickAlexanderThePilot
    @PatrickAlexanderThePilot 5 років тому +2

    Can SQL Table be created dynamicly and based on the source file ?

    • @kromerm
      @kromerm 5 років тому +2

      Yes. In the Destination Sink dataset, type in a new name for your target table and one will be created using that name and the schema of the incoming data stream.

    • @ShanmugarajRaja
      @ShanmugarajRaja 5 років тому +1

      @@kromerm
      Can you share a link for this description

    • @MSDataFactory
      @MSDataFactory  5 років тому +1

      @@ShanmugarajRaja In your SQL dataset, in the "Table" field, click "Edit" and then type in the name of the table you wish to create. You can also parameterize this field and use dynamic content to generate table names on the fly. docs.microsoft.com/en-us/azure/data-factory/connector-azure-sql-database#dataset-properties

  • @zikoraswrld
    @zikoraswrld 3 роки тому

    How do I include a timer trigger in the data set to periodically delete specific rows

  • @fun_facts168
    @fun_facts168 2 роки тому

    Linked service with Self-hosted Integration runtime is not supported in data flow. Please utilize the Azure IR with managed vnet
    I am getting this error while accessing sql from data flow can you please help me how can I fix?

  • @ricardomerin8688
    @ricardomerin8688 4 роки тому

    how to delete in target the rows that not exists in source? Delete if...?. thank you

  • @nitindamle5380
    @nitindamle5380 5 років тому

    How to do Update on columns base on some condition in same table (source and destination table is same)

    • @MSDataFactory
      @MSDataFactory  5 років тому

      Use datasets for your Source and Sink that point to the same table. Set the key column in your Sink and turn on "Allow updates" on your sink. Then create an update expression in your Alter Row transformation that defines your criteria.
      Think of the Alter Row policy as your WHERE clause in a SQL UPDATE statement.
      docs.microsoft.com/en-us/azure/data-factory/data-flow-alter-row

  • @vicvic553
    @vicvic553 3 роки тому

    how to change a numeric value, integer fo example? how to reassing a value? by =, ->, => it doesn't work...

    • @MSDataFactory
      @MSDataFactory  3 роки тому

      Use the Derived Column transformation to modify an existing value