Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
ekveda
Starting Member
4 Posts |
Posted - 2007-07-02 : 03:39:11
|
Hi,After doing the purge and re-indexing on database, the main file is not active. I mean the ndf file has started growing.The mdf file is about 84 GBldf was 3 GB which has now become 16GBand also the ldf is not active. it is about 13 GBUrgent help will be appriciated as I will run out of space.........Thanks |
|
rmiao
Master Smack Fu Yak Hacker
7266 Posts |
Posted - 2007-07-02 : 11:47:26
|
If ndf file is in same file group with mdf file, sql will put more data in it untill its size matches mdf file. |
 |
|
b.veenings
Yak Posting Veteran
96 Posts |
Posted - 2007-07-04 : 07:15:11
|
Hi,where do you want to go to?Do you want the .mdf to enable as default datafile?eventually you get the same problem if you let it grow further on the mdf file, what kind of data does the ndf file contains?cheers,BenjaminNeed an SQL consultant?check www.veeningsengineering.nl |
 |
|
b.veenings
Yak Posting Veteran
96 Posts |
Posted - 2007-07-04 : 07:18:24
|
quote: Originally posted by b.veenings Hi,where do you want to go to?Do you want the .mdf to enable as default datafile?eventually you get the same problem if you let it grow further on the mdf file, what kind of data does the ndf file contains?cheers,BenjaminNeed an SQL consultant?check www.veeningsengineering.nl
if you want to change t use :USE masterGOALTER DATABASE MyDatabase MODIFY FILEGROUP [PRIMARY] DEFAULTGONeed an SQL consultant?check www.veeningsengineering.nl |
 |
|
|
|
|