My PaaS database is full. It was allocated 32GB. How do I size it bigger

Williams, Johnny (Houston) 1 Reputation point
2022-03-29T15:22:40.287+00:00

My PaaS database is set to 32GB but now is full

Azure SQL Database
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Nandan Hegde 27,241 Reputation points MVP
    2022-03-29T16:11:42.58+00:00
    0 comments No comments

  2. Dan Guzman 8,516 Reputation points
    2022-03-29T16:42:56.963+00:00

    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 );  
    
    0 comments No comments