Reputation: 1
I am using sql server db enterprise version. I have set auto growth size to 500MB for both files and max size unlimited but some times it is not working and DB does not respond properly.
Means it stops auto growth of db files, it is same as initial size.
What can be the reason?
Upvotes: 0
Views: 2818
Reputation: 46203
A likely cause is the auto grow operation times out and rolls back because the SQL Server service account doesn't have the Windows permission "Perform Volume Maintenance Tasks" needed for instant file initialization.
That said, you should use use auto grow only as a safety net for unexpected space needs. It is best to size files according to expected space requirements to avoid auto grow.
Upvotes: 1