|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Tuesday, February 12, 2013 5:19 AM
Points: 7,
Visits: 23
|
|
I have a 14GB uncompressed .bak file that I'm trying to restore to a new 20GB (20,000MB) database that I just created . When I run the restore it fails with the following error:
There is insufficient free space on disk volume 'F:\' to create the database. The database requires 236339200000 additional free bytes, while only 198730047488 bytes are available.
Unless my math is off, 14GB is less than ~220-230GB. (The stated available bytes left on the disk is correct though). Anybody know what could be causing this? Thanks.
--------------------------------------------------------------
"Daterbase, taterbase, gatorbase."
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Today @ 9:05 AM
Points: 70,
Visits: 220
|
|
My understanding is that even uncompressed backups do not backup "Free space". so where ever this bak came from... check the actual mdf/ndf file sizes. the space used data space can be 14GB and still have 250GB of "free space" that will be restored on .. .well restore.
Please someone correct me if this statement is wrong.
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Today @ 9:05 AM
Points: 70,
Visits: 220
|
|
http://www.sqlservercentral.com/Forums/Topic777462-169-1.aspx
This is a previous link that has this exact same issue.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Tuesday, February 12, 2013 5:19 AM
Points: 7,
Visits: 23
|
|
Thanks Bill. That's exactly what I was looking for. Sorry for the repost.
--------------------------------------------------------------
"Daterbase, taterbase, gatorbase."
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Today @ 9:05 AM
Points: 70,
Visits: 220
|
|
| No worries. They can get lost in time. Glad to help ^.^
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 1:51 PM
Points: 32,906,
Visits: 26,789
|
|
As a sidebar, I'm thinking there's something seriously wrong with the database. You're talking about a very small database using almost a quarter of a Terabyte! When you finally get this bugger loaded, look at the recovery model. I'd bet credits to Navy beans that it's in the FULL or Bulk Logged recovery model and that no one has taken a transactional log backup for MONTHS.
--Jeff Moden "RBAR is pronounced "ree-bar" and is a "Modenism" for "Row-By-Agonizing-Row".
First step towards the paradigm shift of writing Set Based code: Stop thinking about what you want to do to a row... think, instead, of what you want to do to a column."
For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
|
|
|
|
|
UDP Broadcaster
      
Group: General Forum Members
Last Login: Yesterday @ 1:53 AM
Points: 1,474,
Visits: 2,342
|
|
Jeff Moden (2/11/2013) As a sidebar, I'm thinking there's something seriously wrong with the database. You're talking about a very small database using almost a quarter of a Terabyte! When you finally get this bugger loaded, look at the recovery model. I'd bet credits to Navy beans that it's in the FULL or Bulk Logged recovery model and that no one has taken a transactional log backup for MONTHS.
I had a similar problem recently - the culprit was an autogrow setting that been set to 1,000... percent.
|
|
|
|