I am new to Azure. I have a automated process that populates data into a table on Azure SQL Database. Now, I am looking for an automated way of exporting the data out of this table in a CSV format to an On-premises location. (From there the file will be sent to a vendor) By Automation I mean a scheduled process which can run every couple of hours.
How can this be achieved?
There are many ways can auto export the Azure SQL database table data as a csv file to an on-premise location.
The best way we suggest you is using Data Factory, when the pipeline created, you can create a trigger and schedule execute the pipeline.
Reference:
You also could use bellow ways:
Ref: Azure SQL DB - data file export (.csv) from azure sql
Hope this helps.