Hi
Techie •,
Welcome to Microsoft Q&A forum and thanks for using Azure Services.
As I understand, you want to load specific rows to target using Data Flow and Azure Database for MySQL.
Let us know if the ask is different from above.
Considering the scenario described in the question, let's say we have a table in Azure Database for MySQL as "FilePathCheck" which has below data with columns as ID and Filepath:
Filepath stores value of Path of the file as mentioned in the question and we need to delete rows that has 01.csv (want to keep only test.csv).
For this purpose, we can connect to Source, then use "Alter Row" transformation in Data Flow Activity as shown below with expression inside "Delete If" as like(Filepath,'%01%') :
Like function with wildcard would delete rows having '01' and result would look like below in the Target Table 'FileCheckOutput':
Hope this helps.
If this answers your query, do click Accept Answer and Mark Helpful for the same. And, if you have any further query do let us know.
Thank you.