I have a fragmentation problem on my production database. One of my main data tables is about 6GB(3GB Indexes) (about 9M records) in size and has 94%(!) index fragmentation.
I know that reorganizing indexes will solve this problem BUT my database is on SQL Server 2008R2 Express which has 10GB database limit and my database is already 8GB in size.
I have read few blog posts about this issue but non gave answer to my situation.
My Question1 is: How much size(% or in GB) increase can I expect after reorganizing indexes on that table?
Question2: Will Drop Index -> Build same index take less space? Time is not a factor for me at the moment.
Extra question: Any other suggestions for database fragmentation? I know only to avoid shrinking like a fire ;)