I have an Azure SQL database that I want to backup offline, i.e. not on Azure. I need to create a .bacpac
file first and move that file.
Now if I use az sql export
etc .... this produces unexpected spike of DTU consumption in the performance and hence affects the database users as these are live database.
I was thinking of taking the last full backup and using that, but that is done weekly and hence would be 1 week old, where can I see that actual full backup?
It would be very helpful if I could get some ideas on the best way to backup the database to a .bacpac
file and save on maybe another cloud service, how could I do this without affecting performance?
Since you don't want to cause impacts on your environment, the best approach would be to restore an existent backup.
To monitor the progress of the export operation, open the page for the server containing the database being exported. Under Data management, select Import/Export history.
Sources: