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?
@harithamarripudi56229 ай бұрын
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
@zikoraswrld3 жыл бұрын
How do I include a timer trigger in the data set to periodically delete specific rows
@bobreddert7547 Жыл бұрын
Good tutorial. However I got to the end thinking that UPSERT would also be covered (it was not)
@NeumsFor92 жыл бұрын
Any idea what would cause a "code not found for stream" error?
@fun_facts1682 жыл бұрын
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?
@Alicia_BPHCАй бұрын
Thank you 🦋
@PatrickAlexanderThePilot5 жыл бұрын
Can SQL Table be created dynamicly and based on the source file ?
@kromerm5 жыл бұрын
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.
@ShanmugarajRaja5 жыл бұрын
@@kromerm Can you share a link for this description
@MSDataFactory5 жыл бұрын
@@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
@ricardomerin86884 жыл бұрын
how to delete in target the rows that not exists in source? Delete if...?. thank you
@DrDiabolical0002 ай бұрын
Thanks a lot man!
@nitindamle53805 жыл бұрын
How to do Update on columns base on some condition in same table (source and destination table is same)
@MSDataFactory5 жыл бұрын
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
@vicvic5533 жыл бұрын
how to change a numeric value, integer fo example? how to reassing a value? by =, ->, => it doesn't work...
@MSDataFactory3 жыл бұрын
Use the Derived Column transformation to modify an existing value