August 10, 2023 at 5:50 am
Error: Could not allocate space for object because filegroup is full.
dbName FileName type_desc CurrentSizeMB FreeSpaceMB
DBName ABCD_01 ROWS 100000.00 0.00
DBName ABCD_02 ROWS 100000.00 0.00
Autogrowth is 500 MB. Max File size is 1500000. There is plenty of disk space available. Why are we still seeing the error ?
August 10, 2023 at 10:26 am
are you able not able to create any objects in the database or getting creating a specific object
August 10, 2023 at 11:46 pm
Not enough info to help here. Are you sure that you created the file group on the correct disk drive?
--Jeff Moden
Change is inevitable... Change for the better is not.
August 11, 2023 at 8:30 am
If the auto-growth cannot respond before its timeout has passed, you'll receive this error message.
The extent will happen eventually.
Please double check.
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
August 18, 2023 at 7:31 am
Yes
August 18, 2023 at 7:08 pm
I'd script out the db, make sure you know the default filegroup and files are set up correctly. Likely this is either something you've missed when checking, or as Johan says, you had a delay in the auto grow process responding.
August 21, 2023 at 9:11 am
This appears to be the case. Where do we check the time-out constraint and can we change this to a bigger number ? And any pitfalls if we do so ?
August 21, 2023 at 5:39 pm
You can increase the timeout for connections, but honestly, to me this is a proactive things DBAs need to do. VLFs are less of a problem in modern versions, but you still want to be adding space to your files (quarterly, IMHO) to ensure there is no need to grow during workloads.
August 29, 2023 at 6:26 am
Yes, that is exactly what is happening. HOw can we make the auto growth happen before the timeout.
Can we increase the timeout ? If yes how and where ?Thanks
August 29, 2023 at 6:44 am
Is there any connection between instant file initialization set to (Y) and sqlserver autogrowth ?
Does IFI(Y) means faster autogrowth ?
August 29, 2023 at 6:45 am
Best is to prevent the autogrow !
Set the file to a size(s) you estimate will be needed to host the data for the next couple of months / years
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
August 29, 2023 at 6:48 am
Is there any connection between instant file initialization set to (Y) and sqlserver autogrowth ?
Does IFI(Y) means faster autogrowth ?
For non-LOG files, IFI causes the grow to be 'instantly' because it will only zero out pages when they get used for the first time.
Log files will always be zeroed out at growth time.
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
August 29, 2023 at 7:01 am
How can we check if SAN is too old and the response time from IO is timed out when SQL Server need to auto grow its size ?
August 29, 2023 at 2:58 pm
You need to look at SAN monitoring.
Johan's advice is what I use. Grow manually before you need the space.
August 30, 2023 at 10:30 am
...so a delay in the auto grow process response results in an error.
can Instant_File_Initialization if enabled lessen the number of times these alerts can happen.
Will IFI = enabled help expand space right away(mdf's) when required with minimal delay as per autogrowth options ?
Viewing 15 posts - 1 through 15 (of 21 total)
You must be logged in to reply to this topic. Login to reply