October 29, 2014 at 7:53 am
I have a production db with 3 file groups, mdf is approaching 1TB and I don't want it to grow beyond that. Can I just restrict file growth on the mdf and let the ndf files grow? This is a vendor db that I inherited and it was not sized properly from the beginning. Thanks
October 29, 2014 at 8:00 am
If you have three data files in three separate filegroups, no you can't. If you restrict growth on the mdf and it's the only file in the PRIMARY filegroup, when it fills up you'll start getting errors.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
October 29, 2014 at 8:01 am
Yes, that will work, assuming those ndfs are in the same filegroup as the mdf.
-- Gianluca Sartori
October 29, 2014 at 8:11 am
Thank you Gail and Gianluca. The data files are in separate filegroups so I'm out of luck.
October 29, 2014 at 1:17 pm
SqlScared (10/29/2014)
Thank you Gail and Gianluca. The data files are in separate filegroups so I'm out of luck.
Maybe not. Transfer some of the tables to the other file groups.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply