Azure SQL Database
An Azure relational database service.
4,521 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
My PaaS database is set to 32GB but now is full
Hey,
Please refer the below link :
https://learn.microsoft.com/en-us/azure/azure-sql/database/single-database-scale
Adding one can also change the database max size using T-SQL. The specified size must be within the service tier (which can also be changed using T-SQL).
ALTER DATABASE YourDatabase
MODIFY ( MAXSIZE = 100GB );