Let's say I have database with a .MDF
file of 100 GB and which is 80% full (80 GB used out of 100 GB available).
Within this database I have a table which contributes 40 GB to the .MDF
file.
My questions are:
If I delete 20 GB worth or records will my
.MDF
file stay the same in terms of size (100 GB)? Also, will it reflect to the free space on/inside the.mdf
file, meaning it will indicate that the.mdf
file is now 60% full?Over time, if I add back records to my table leading up to another 20 GB of data (on the same table), will my
.MDF
file stay the same at 100 GB? And will it reflect that I will be back at 80% capacity for my.mdf
file (meaning I now am back to 20 gb free space on my.mdf
file)?
Thanks