SQL "DELETE FROM ... " doesn't work because elastic pool is full

310 views Asked by At

I'm trying to remove some rows from my table, because the elastic pool (Azure) is full. However, apparently deleting doesn't work when the pool is full.

I'm trying to run this statement in SQL Server Management Studio (SSMS):

DELETE FROM [xx].[xxx] WHERE somecolumn = 13

But this returns:

Msg 1132, Level 16, State 1, Line 1 The elastic pool has reached its storage limit. The storage usage for the elastic pool cannot exceed (524288) MBs.

How do I get out of this situation?

Solutions that are not preferred/possible:

  • Increasing the elastic pool size as it's already at its maximum
  • Dropping the entire table, because there is relevant data in there

Thanks in advance

0

There are 0 answers