Core component of SQL Server for storing, processing, and securing data
Hi @Cooper, David A. [ISS] (Contractor),
Shrinking tempdev to match the smaller files is not recommended and won’t resolve the imbalance. TempDB files only stay balanced when all data files can grow equally. In this case, SQL Server has clearly been forced to grow a single file to satisfy workload demand.
The fix does not require failover or restart:
- Verify that autogrowth is enabled and identical on all TempDB data files.
- Proactively resize the smaller files so SQL Server no longer depends on a single file for allocations.
Once file sizes and growth settings are aligned, TempDB will remain balanced going forward.
Thanks,
Akhil.