We're giving away 30 tickets for FREE! Share your story, your vision, or your hustle and tell us why YOU deserve a ticket.
Apply nowWin a FREE 3 Day Ticket to FabCon Vienna. Apply now
I am ingesting data from sql server using fabric Data Factory
How is it possible to trigger a pipeline as soon as the sql server table has upsert?
Thank you
Solved! Go to Solution.
You can use Azure function to generate the token at run time but you can even add the already generated token within database scoped credentails in Azure SQL database which would eliminate the need for Az function
you can go throgh this doc :
Depending on SQL server version, you can use polybase feature and generate file and then trigger the pipeline via event
Hi,
I have a log table in data Warehouse that logs when sql table is updated. Then you can create a view that sets a flag to 1 or 0 depends if its updated today.
In the pipeline you can just create a lookup and if it returns 1 it continue else stop. Then you can schedule this every 15,30,60 min or What you think is best.
br
Marius
Can you state which SQL server version you are using? That would help you suggest you a better way
FOr Azure SQL database, please refer the below blog :
You can leverage the Fabric data pipeline rest api to trigger it or you can have a blank file created to event trigger the fabric data pipeline
it look slike azure function is required?
even in fabric data factory there is no straight forward mechanism to trigger a DF pipeline?
thanks
You can use Azure function to generate the token at run time but you can even add the already generated token within database scoped credentails in Azure SQL database which would eliminate the need for Az function
you can go throgh this doc :