An Azure service for ingesting, preparing, and transforming data at scale.
Hi,
One approach you could use would be to have script activity. For example, command similar to below would scale to S1:
ALTER DATABASE myazuresqldatabase MODIFY (SERVICE_OBJECTIVE = 'S1');
You need to account for the fact that scaling takes some time to complete. There are different ways to deal with this. For example, you could put in a wait activity for a certain number of minutes, and then your pipeline would continue under the assumption that the scale operation had enough time to complete.
Scale single database resources in Azure SQL Database
https://learn.microsoft.com/en-us/azure/azure-sql/database/single-database-scale
Please click Accept Answer and upvote if the above was helpful.
Thanks.
-TP