See the top rated post in this thread. Click here

Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Recovered, but doesn't open

  1. #1
    Active Member
    Join Date
    2013-03
    Location
    Can you say DERECHO, Iowa
    Posts
    66
    Login to Give a bone
    0

    Default Recovered, but doesn't open

    So last week we had a planned power outage that happened earlier than scheduled. Right when I was in the middle of plotting. Now, that drawing is toast. Trying to open it cad sits and spins it's "Not Responding" deal and sits that way until killed. I tried a recovery of the drawing and it recovers it, audit fixes 15 errors and then starts opening, but gets lost in a loop somewhere. I have an old backup with a day or two less work done in it that I'd like to avoid going back to, but could if needed. The actual .bak does the same thing as the dwg. Recovers, but never finishes opening. Every other drawing opens fine. Any thoughts on what I can do? Do I run through the recovery and just let it sit for an hour to see if it finally pulls out of whatever loop it is in? Thanks.

  2. #2
    I could stop if I wanted to
    Join Date
    2015-05
    Location
    West Des Moines
    Posts
    306
    Login to Give a bone
    1

    Default Re: Recovered, but doesn't open

    You can try the method of letting it sit and see if it ever processes, sometimes it really is thinking for a long time. Once I tried to import a surface from a point cloud that took about 4 hours to open because the surface wasn't simplified at all...which is the day I learned that if the import event is too large CAD will create multiple drawings to support it. I...uh...abandoned that drawing.

    If you don't have the time to sit around and see there's probably two other things I can think of that I'd try.

    1) Check the drawing's folders for previous versions by right clicking on it, going to properties, and looking at previous versions. Our server backup at 7AM and noon. Hopefully yours is set in a similar fashion where you can grab something from earlier in the day. Similarly I'd check the DWG for previous versions as well if the folder option doesn't work.
    2) Contact your IT department and see if they can offer any assistance if the above doesn't work.

  3. #3
    Certifiable AUGI Addict tedg's Avatar
    Join Date
    2005-06
    Location
    in the upper right corner
    Posts
    3,507
    Login to Give a bone
    1

    Default Re: Recovered, but doesn't open

    Just grasping at straws..
    maybe try to insert it into a blank drawing file?
    maybe change the extension to .dxf and see if that will let you open it?
    or maybe yes.. try to run the recovery and let it work for a long time... then if it opens, purge the **** out of it and save it.

  4. #4
    Active Member
    Join Date
    2013-03
    Location
    Can you say DERECHO, Iowa
    Posts
    66
    Login to Give a bone
    0

    Default Re: Recovered, but doesn't open

    Quote Originally Posted by CCarleton View Post
    1) Check the drawing's folders for previous versions by right clicking on it, going to properties, and looking at previous versions. Our server backup at 7AM and noon. Hopefully yours is set in a similar fashion where you can grab something from earlier in the day. Similarly I'd check the DWG for previous versions as well if the folder option doesn't work.
    Yeah I did look for previous version. Unfortunately our IT department is mostly incompetent and so our server only backs up overnight, they also don't allow for "previous versions" in the traditional sense.
    Quote Originally Posted by CCarleton View Post
    2) Contact your IT department and see if they can offer any assistance if the above doesn't work.
    There's a reason our department mostly talks to me for IT problems. See above.

  5. #5
    Active Member
    Join Date
    2013-03
    Location
    Can you say DERECHO, Iowa
    Posts
    66
    Login to Give a bone
    0

    Default Re: Recovered, but doesn't open

    Alright, I ended up letting it grind it out. It did after a couple of hours. I purged everything (and there was a lot of those *Uxxx blocks) then I saved it down. On trying to reopen it, it still had issues, so I inserted that drawing into a new drawing as a block, exploded it and, imported the sheets and boom there everything was. Seems to work okay, still a little slower than usual, but overall not too bad a recovery.

  6. #6
    Member
    Join Date
    2018-07
    Location
    California, US
    Posts
    2
    Login to Give a bone
    1

    Default Re: Recovered, but doesn't open

    If you still had a .bak file for the drawing, you could just rename it the file, and replace ".bak" with ".dwg" and if the file is not corrupted, it will open like a normal .dwg, and may be more recovered than even the drawing in the recovery manager. May want to try next time to see if this works for this situation, not sure exactly if it applies to what happened to you, but this has become a cool shortcut we use at my company when things like this happen.

  7. #7
    Active Member
    Join Date
    2013-03
    Location
    Can you say DERECHO, Iowa
    Posts
    66
    Login to Give a bone
    0

    Default Re: Recovered, but doesn't open

    Quote Originally Posted by MrVerryt View Post
    If you still had a .bak file for the drawing, you could just rename it the file, and replace ".bak" with ".dwg" and if the file is not corrupted, it will open like a normal .dwg, and may be more recovered than even the drawing in the recovery manager. May want to try next time to see if this works for this situation, not sure exactly if it applies to what happened to you, but this has become a cool shortcut we use at my company when things like this happen.
    Yep, the .bak was corrupted too. It was the first thing I tried. I did find a previous version of the .bak and could have used that, but it was from hours previous. I opted to try and recover all the work done on the drawing. Thankfully I was able to.

  8. #8
    Certifiable AUGI Addict tedg's Avatar
    Join Date
    2005-06
    Location
    in the upper right corner
    Posts
    3,507
    Login to Give a bone
    0

    Default Re: Recovered, but doesn't open

    Quote Originally Posted by FabriCADed View Post
    Alright, I ended up letting it grind it out. It did after a couple of hours. I purged everything (and there was a lot of those *Uxxx blocks) then I saved it down. On trying to reopen it, it still had issues, so I inserted that drawing into a new drawing as a block, exploded it and, imported the sheets and boom there everything was. Seems to work okay, still a little slower than usual, but overall not too bad a recovery.
    Good to hear, did you purge all the "Regapps" too? (registered applications that my be bogging down your drawing)
    Those don't get purged with a regular purge, even if you purge all.

    (command -purge > Regapps > *)
    do that a couple times should help.

    I have a lisp routine that does it 3 times and saves the dwg.
    Code:
    (defun c:specicalpurge ()
    (setq ce (getvar "cmdecho"))
        (setvar "cmdecho" 0)
    	(command "layer" "s" "0" "")
    	(command "zoom"  "e"  "zoom"  ".9x" ) 
    	(repeat 3 
    	(command "._purge" "_A" "*" "_N")
    	(command "purge" "regapps" "" "n"))
       (setvar "cmdecho" ce)
    (command "_qsave")
    (princ)
    )

  9. #9
    Administrator rkmcswain's Avatar
    Join Date
    2004-09
    Location
    Earth
    Posts
    9,805
    Login to Give a bone
    0

    Default Re: Recovered, but doesn't open

    Quote Originally Posted by FabriCADed View Post
    Yep, the .bak was corrupted too. It was the first thing I tried. I did find a previous version of the .bak and could have used that, but it was from hours previous. I opted to try and recover all the work done on the drawing. Thankfully I was able to.
    I don't understand how the .BAK file could be corrupted, presuming you think the corruption occurred to the .DWG because of the power outage.
    The .BAK file would have been just sitting on disk, not doing anything. The power outage would not have affected the BAK at all.
    Also, if you had autosave enabled, the .SV$ file will be in the autosave location (typically the %temp% folder), and it can be renamed to .DWG and tried.

    If you are still interested, send me the "corrupt" drawing and I'd like to see if it opens with other (non-AutoCAD) applications.
    R.K. McSwain | CAD Panacea |

  10. #10
    100 Club
    Join Date
    2005-06
    Location
    Atlanta
    Posts
    118
    Login to Give a bone
    0

    Default Re: Recovered, but doesn't open

    I believe with 2018 Regapps are also purged with a regular purge.

Page 1 of 2 12 LastLast

Similar Threads

  1. 2013: AutoCAD 2013 doesn't open any file
    By walter.kalb692460 in forum AutoCAD General
    Replies: 2
    Last Post: 2015-02-16, 12:04 PM
  2. How to recovered overwritten central file
    By Wagurto in forum Revit - Worksharing/Worksets/Revit Server
    Replies: 7
    Last Post: 2009-11-06, 04:53 PM
  3. the open command window doesn't show
    By burt.yoshida in forum AutoCAD General
    Replies: 1
    Last Post: 2009-07-06, 08:50 AM
  4. Display driver stopped responding and has recovered
    By AP23 in forum Revit - Hardware & Operating Systems
    Replies: 2
    Last Post: 2009-06-28, 05:38 AM
  5. Can't insert blocks in recovered drawing
    By steve_robichaud in forum AutoCAD General
    Replies: 8
    Last Post: 2005-10-14, 05:42 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •