Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 :