Share via

Sql server used space started steadily increasing at a very quick rate

Angelo Spaziani 0 Reputation points
2026-04-13T16:55:36.06+00:00

I am unsure of why my space usage is going up so drastically, please advise. My table usage only totals about 90GB, yet my used space is near 200GB. It increased almost 40GB in the matter of about 10 minutes and continues to grow. No data syncs or replicas are configured.

Azure SQL Database

1 answer

Sort by: Most helpful
  1. Manoj Kumar Boyini 15,730 Reputation points Microsoft External Staff Moderator
    2026-04-13T19:32:12.7733333+00:00

    Hi @Angelo Spaziani

    Since the used space dropped immediately after restarting the API service, this strongly indicates the growth was caused by long-running or uncommitted transactions from the application rather than actual data growth.

    Azure SQL Database uses Accelerated Database Recovery (ADR), which stores row versions in the Persistent Version Store (PVS). If transactions remain open, these versions cannot be cleaned up, causing rapid internal space growth.

    Restarting the API terminated those sessions, allowing ADR to clean up retained row versions — which is why the database size dropped back to ~90 GB without any manual maintenance.

    To prevent recurrence, please review the API for long-running or uncommitted transactions and connection/session handling.

    Please let us know if you have any questions and concerns.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.