If the log space usage continues to grow despite regular log backups, it could be due to several factors:
- In-Memory OLTP Checkpoints: If the databases have the In-Memory OLTP feature enabled, the transaction log might be waiting for an In-Memory OLTP checkpoint to occur.
- Active Transactions: Long-running or uncommitted transactions can prevent log truncation.
- Replication or CDC: If CDC or replication is enabled, it might be causing the log to grow.
- Database Mirroring or Availability Groups: If the database is part of a mirroring setup or an availability group, synchronization issues might prevent log truncation.
Thank You!