Stuck in endless loop for new line logic

below code return endless output, loop didnot exit.
pls help..
DECLARE
var01 VARCHAR2(1000);
var02 VARCHAR2(1000);
var03_error VARCHAR2(1000);
cnt number(3);
CURSOR cur is
SELECT * from temp_merge01
begin
FOR i IN cur
var01 := i.action01;
LOOP
var02 := substr(replace(var01,''),1, (instr(replace(var01,''),chr(10))));
IF var02 IS NOT NULL THEN
dbms_output.put_line('var02: '|| var02);
END IF;
var01 := replace(substr(replace(var01,''),(instr(replace(var01,''),chr(10)))+1),'');
dbms_output.put_line('var01: '|| var01);
cnt := instr(var01, '<');
if cnt <> 0 then
null;
else
dbms_output.put_line('var02: '|| var02);
end if;
EXIT WHEN cnt = 0;
END LOOP;
EXCEPTION
WHEN OTHERS THEN
var03_error := SQLERRM;
dbms_output.put_line ('Error: ' || var03_error);
end;

Sure, just as soon as you come round to my house and do the laundry for me ;)
Alternatively, you could put a bit of effort in and fix the basic errors. You say that you are stuck in an endless loop. That is not possible from the code that you have supplied, there are therefore two possibilities.
1. You lied i.e. you are actually trying to run the above code, it errors and you want someone to fix it, but thou8ght that somehow implying a different error in the code would get someone to do your work for you.
2. You Poste d code different to that which you are actuially running and your code does indeed have an infinite loop. In which case, post the code that actually runs but drops into an endless loop.
GL

Similar Messages

  • ITunes Stuck at verify.  Keeps sending me to verify ID.  Then endless loop for Billing info.

    Tunes Stuck at verify.  Keeps sending me to verify ID.  Then endless loop for Billing info.

    Hi there,
    You may find the article below helpful
    Apple ID: Changing your Apple ID password
    http://support.apple.com/kb/HT5624
    -Griff W.

  • Want to know how to check for new line character in text file

    Hi All,
    I`m trying to read data from text file. However I`m not sure whether the data is in 1st line or nth line. Now I`m trying to read the text from the readline. But if text is "" and not NULL then my code fails. So I want to know how to check for new line character and go to next line to find the data. Please help.
    Thanks
    static int readandwriteFile(Logger logger,String filepath){
              BufferedWriter out = null;
              BufferedReader in = null;
              File fr = null;
              int get_count = 0;
              try     {
              if(new File(filepath).exists())
              fr= new File(filepath);
                        System.out.println("FileName: "+fr);
                   if(fr != null){
    in = new BufferedReader(new FileReader(fr));
                             String text = in.readLine();
                             if(text != null){
                             get_count = Integer.parseInt(text);
                             in.close();
                             else{
                                  get_count = 0;
         else{                    
    out = new BufferedWriter(new FileWriter(filepath));
         out.write("0");
                out.close();
                   }          //Reading of the row count file ended.
              catch(Exception e) {
                   e.printStackTrace();
              finally {
                   try{               if (in != null) {
                             in.close();
              if (out != null) {
                             out.close();
              catch(Exception e) {
                        e.printStackTrace();
              return get_count;
         }

    You are calling the readline() only once which means you are reading only the first line from the file...
    Use a loop (Do-While preferably)
    do{
    //your code
    }while(text == "")

  • WAD-Analysis Item-Poor performance for new lines

    Hi.
    I use WAD7 for entering new records in IP.
    According to our business requirements, in analysis item properties I have defined "Number of New Lines in Planning Queries" = 50.
    After that I face before extremely poor performance - it takes about 1-2 minutes until the page has loaded (note that it is empty page - only new blank rows).
    When I define new lines = 1 performance is very good (2-3 sec).
    Does anybody know what could be the problem ?
    Thanks.

    Hello Andrey,
    the number of new lines configured in WAD is completely unknown in the ABAP backend and has no impact on backend performance; in fact, the front end gets information about one 'line' of template cells, this costs nothing.
    Checks for characteristic relationships etc. only may have significant costs for cells of the result set, not for new lines.
    Whether this problem comes from the ABAP backed or form the Java stack or from the browser rendering can be checked
    with an RSTT trace. Is the run time of the trace different between 1 or 50 new lines, were different backend calls recorded?
    If not, the problem comes from the Java stack or from the browser rendering. One can check the latter via task manager.
    To check (partially) the run time in Java and/or ABAP stack add the parameter &PROFILING=X in the url, cf. note 1048691.
    Regards,
    Gregor

  • My phone is stuck in a loop for recieving texts!

    Can anyone help me?  my phone seems tobe stuck in a loop for recieving texts.  i keep recieving the same texts from 411.  it started yesterday when i had 411 send me a text with the number i was looking for.  now i can't recieve any texts except from 411. i can send texts and make calls but i can't recieve any others.

    Hi LizzieBr33,
    I feel your pain; I use my text messaging featuring constantly and can relate to the importance of being able to receive text messages. I trust that rebooting your phone has resolved the issue by now as it was recommended by other forum members (thank you all!). If you still have this messaging issue please post back with answers to the following questions and we all be able to assist you further.
    What 411 service are you getting these text messages from (Several services available)?
    Did you subscribe to a specific service to receive messages from these 411 messages?
    Are you using a third party application to send/receive text messages?
    Additionally, a Factory Reset will most likely resolve the issues if a 3rd party application or system file is corrupted.
    AntonioC_VZWSupport
    Follow us on Twitter at www.twitter.com/vzwsupport

  • Stuck in endless loop checking for IMAP mail

    My ISP that I have my domain name on for some reason is having real problems with Mac OS X 10.8.0 that weren't there before:
    Dovecot Exim version 4.80 is my server.
    My Drafts, Drafts Cache, and a subfolder of Drafts all are checking messages through IMAP with no end in sight after 10 minutes on the Activity dialog. Safari, Chrome, and Mail are all that are open.  They claim the server load is all of 5% load.  Would upgrading to 10.8.1, 10.8.2, or 10.8.3 help (after of course backing up)?

    Sure, just as soon as you come round to my house and do the laundry for me ;)
    Alternatively, you could put a bit of effort in and fix the basic errors. You say that you are stuck in an endless loop. That is not possible from the code that you have supplied, there are therefore two possibilities.
    1. You lied i.e. you are actually trying to run the above code, it errors and you want someone to fix it, but thou8ght that somehow implying a different error in the code would get someone to do your work for you.
    2. You Poste d code different to that which you are actuially running and your code does indeed have an infinite loop. In which case, post the code that actually runs but drops into an endless loop.
    GL

  • TimeCapsule backup is stuck in endless loop

    Hi,
    yesterday I updated my MacBook Pro from 10.5.8 to 10.6.3. Today I tried to back up my new system on my TimeCapsule 500. Before it started it did some kind of verification, with seemed to be successful, but now TimeMachine is stuck in a kind of an endless loop. It constantly counts the items to back up, then deletes old backups, then does some "cleaning up", but instead of backing up the new stuff, it starts again with counting items. Weird thing is, that obviously TimeMachine looses contact to the volume in the step of "cleaning up". I recognized that the volume is unmounted in this step and remounted afterwards.
    I'm totally lost in this. Any hint is appreciated.
    Werner

    Werner Kranwetvogel wrote:
    Thanks for the tipp, Pondini. Did exactly as you told me and now it works,
    Yay!
    even if it's a shame that all the old backups are gone.
    They were corrupted, so might have been useless anyway.
    Wonder what happens, when my TimeCapsule will be full again and Time Machine has to delete old backups once more. Do I have to do this hard restart again, or will it work like it should? We'll see about that.
    Unless Time Machine needs to do another full backup, or perhaps a very large one, you should be fine. This was a "perfect storm" of needing to do a full backup and a "deep traversal" at the same time. We've seen that on rare occasions; why it has to repeat the "deep traversal" after deleting each backup is not clear, but at least it's rare.

  • Mac Mail incoming messages stuck in endless loop

    My Mac Mail (Version 7.3) suddenly went crazy on me this morning - when you check for incoming messages, it will show under mail activity that it is checking but the progress bar will fill 80% of the way then stop, with no messages downloaded. And if you go to check for incoming messages again, the total number of messages will double. On and on like that in an endless loop toward infinity. I was able to see that I do not, in fact, have thousands of e-mails waiting for me by clicking account info -> messages on server. Like a dummy I deleted my account (without backing up my sent and drafts, much to my combined shame and dismay) but that didn't fix the problem. I only have one account, a POP3, in my Mac Mail. OSX version is 10.9.4

    First thing to do is never post your actual email address in the forums; you don't want to get lots of spam as a result of spambots harvesting that address.
    Next, login to the web interface of your .mac account and verify how many messages are actually there, both new Unread messages, and already Read messages. Write those numbers down and then logout.
    Quit Mail and go to Home/Library/Mail and remove the mailbox for your IMAP (.mac) account. Then delete any files that start with Envelope Index.
    Restart Mail and wait for it to download your .mac email again and rebuild your Mail index; then check to see if the problem continues.

  • Stuck in endless loop after iOS7 upgrade

    I backed up to an iMac using iTunes, latest version, ran the upgrade and now am stuck in an endless loop.
    Power off, restart.
    Hello, slide to setup - done
    Select US region - done
    Choose Wifi - have to enter network info each time
    Set up your iPad - restore from iTunes backup - select restore from backup
    Connected to iTunes screen - connect USB
    On iMac use iTunes Devices:restore from backup:Bruce's iPad
    Select Backup, click Restore button
    Brief display of iOS7 on iPad, then restart, progress bar displays and appears to indicate restore
    Hello, slide to setup
    I cannot get out of this.

    once u have restored from back up it will do the set up assistant as u said, when u get to the part where it asks if u want to set up as new, hit that. it will let u in and ur back up will be there. at least thats the way its suppose to work. if it doesnt u can always erase all content and settings to go back to the loop.

  • Best drum loops for use with Logic? Ease of use, usability, etc.

    Hi,
    I have BFD2 but find it slow to load and sometimes clumsy auditioning loops within Logic. I love the Apple Loops library but I wondered if people are importing MIDI drum files for use with Logic. Do all drum files use the same MIDI mapping? If I drop a BFD2 loop into a Logic drum virtual instrument will it work? I bought a few packs from Groove Monkee but have yet to use them with Logic. I only use them within BFD2.
    I'm basically looking for a seamless way to stay within Logic to improve my workflow. It's taken me days sometimes to get a drum track right by going back and forth with BFD2. Is there a concept I'm missing that would make it easier?
    Thanks

    try Stylus RMX by Spectrasonics. http://www.youtube.com/watch?v=FlgP1q1HCj4

  • Apple Software Update is stuck in the "Checking for new software..." phase

    I installed iTunes+Quicktime using iTunes64Setup.exe and so ASU got automatically installed as well.
    When I manually start ASU, it immediately checks for new software and the progress bar stalls at around 10%. I have not seen ASU run by the task scheduler yet.
    Bonus: The ASU logo has weird colours (http://imagebin.ca/view/XN2-zrN.html)
    Is anybody also having the same problem?

    That's an odd one.
    Have you tried a repair install of ASU?
    Head into your Uninstall a program control panel, select "Apple Software Update" and click "Repair".
    Any help with the hang or the logo issue?

  • Firefox stuck in endless loop asking to restart to finish previous update but does nothing. Can uninstall or install newer version over it. I believe the setup files were erased before reboot by another installer. How do i fix this?

    Anything i try related to firefix gets "Your computer must be restarted to complete a previous upgrade of Firefox" I have tried rebooting no luck, i have tired uninstalling from add remove programs or installing 4.0 over it. At the time I was try to upgrade from 3.0 to 3.6.15. I tried searching for the xpicleanup.dat file but no luck there.
    Any suggestions to get firefox back up and running

    I was having the same problem, so I deleted 'firefox.exe.moz-upgrade' from 'C:\Program Files\Mozilla Firefox' directory, as recommended. Now it no longer says it needs a restart to complete a previous installation. It says it needs a restart to complete a previous uninstall. What do I do now? Help!

  • Occasionally clicking on a link begins an endless loop where new tabs keep opening - can this be prevented?

    see link in email - click - new tabs open, quickly and endlessly. click on red box and firefox recovers and continues opening new tabs - all blank and empty; shut again and then there are about 20 open empty tabs when I open again

    None of this will, in all likelihood, address your actual issue, but:
    Close your resources in the reverse order you opened them. That means ResultSet, Statement and finally Connection
    Speaking of finally, make sure you close your resources within a finally block. That is what they are there for. You need the resources freed regardless of whether the request was successful or not
    Move the System.out.println() out of the loop. You are not connecting every time. You are fetching records every time. It is misleading.
    Do not use SELECT *. Always explicitly label what columns you are selecting. Otherwise, another developer has to go to the actual table, describe it, and see what is coming out.
    Please use the code formatting tags (see button above when posting). It is far too difficult to read otherwise.- Saish

  • Time capsule stuck in endless loop after installation of Snow Leopard

    I've done an upgrade to Snow Leopard on my Unibody Macbook.
    Then when I started Time Machine for the first time, it asked me if I wanted to use my existing backup file or make a new one. I went for the existing backup file and it gave me a warning that I wouldn't be able to use it on my old machine anymore. I went for it.
    Then I let it go for something like 15 hours, but it would always get to a certain percentage at "Calculating Changes", but never complete the actual backup. It would somehow restart after a while and start again from the beginning.
    I tried this both wired and wirelessly. Also, I do not have access to my old backups in Time Machine. I just see "today".
    I've looked in Console and filtered the syslog for "backupd". This clearly shows that it stops and starts several times. Problem is that I don't understand why this happens and how to solve it.
    If anyone can shine a light on this, that would be great. Below are a few hours worth of logfile.
    Kind regards,
    Bastian
    Aug 26 00:30:20 BM-MBP101 com.apple.backupd[6589]: Starting pre-backup thinning: 208.82 GB requested (including padding), 5.76 GB available
    Aug 26 00:30:20 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-04-110649
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649: 5.76 GB now available
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-07-115943
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943: 5.76 GB now available
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-08-091634
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634: 5.76 GB now available
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-10-081726
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726: 5.76 GB now available
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-11-094042
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042: 5.76 GB now available
    Aug 26 00:30:21 BM-MBP101 com.apple.backupd[6589]: Stopping backup.
    Aug 26 00:30:22 BM-MBP101 com.apple.backupd[6589]: Backup canceled.
    Aug 26 00:30:24 BM-MBP101 com.apple.backupd[6589]: Ejected Time Machine disk image.
    Aug 26 00:30:24 BM-MBP101 com.apple.backupd[6589]: Compacting backup disk image to recover free space
    Aug 26 00:31:04 BM-MBP101 com.apple.backupd[6589]: Completed backup disk image compaction
    Aug 26 00:31:04 BM-MBP101 com.apple.backupd[6589]: Starting standard backup
    Aug 26 00:31:04 BM-MBP101 com.apple.backupd[6589]: Network destination already mounted at: /Volumes/Bastian Time Capsule
    Aug 26 00:31:07 BM-MBP101 com.apple.backupd[6589]: Disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle mounted at: /Volumes/Backup of BM’s MacBook Pro 15"
    Aug 26 00:31:07 BM-MBP101 com.apple.backupd[6589]: Backing up to: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb
    Aug 26 00:31:11 BM-MBP101 com.apple.backupd[6589]: Node requires deep traversal:/Users/Bastian/Pictures/iPhoto Library reason:must scan subdirs|missed reservation|
    Aug 26 00:31:11 BM-MBP101 com.apple.backupd[6589]: Node requires deep traversal:/ reason:must scan subdirs|
    Aug 26 00:40:45 BM-MBP101 com.apple.backupd[6589]: Starting pre-backup thinning: 208.82 GB requested (including padding), 5.76 GB available
    Aug 26 00:40:45 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-04-110649
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649: 5.76 GB now available
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-07-115943
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943: 5.76 GB now available
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-08-091634
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634: 5.76 GB now available
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-10-081726
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-11-094042
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726: 5.76 GB now available
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042: 5.76 GB now available
    Aug 26 00:40:46 BM-MBP101 com.apple.backupd[6589]: Stopping backup.
    Aug 26 00:40:47 BM-MBP101 com.apple.backupd[6589]: Backup canceled.
    Aug 26 00:40:49 BM-MBP101 com.apple.backupd[6589]: Ejected Time Machine disk image.
    Aug 26 00:40:49 BM-MBP101 com.apple.backupd[6589]: Compacting backup disk image to recover free space
    Aug 26 00:41:29 BM-MBP101 com.apple.backupd[6589]: Completed backup disk image compaction
    Aug 26 00:41:29 BM-MBP101 com.apple.backupd[6589]: Starting standard backup
    Aug 26 00:41:29 BM-MBP101 com.apple.backupd[6589]: Network destination already mounted at: /Volumes/Bastian Time Capsule
    Aug 26 00:41:32 BM-MBP101 com.apple.backupd[6589]: Disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle mounted at: /Volumes/Backup of BM’s MacBook Pro 15"
    Aug 26 00:41:32 BM-MBP101 com.apple.backupd[6589]: Backing up to: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb
    Aug 26 00:41:36 BM-MBP101 com.apple.backupd[6589]: Node requires deep traversal:/ reason:must scan subdirs|
    Aug 26 00:41:37 BM-MBP101 com.apple.backupd[6589]: Node requires deep traversal:/Users/Bastian/Pictures/iPhoto Library reason:must scan subdirs|missed reservation|
    Aug 26 00:51:12 BM-MBP101 com.apple.backupd[6589]: Starting pre-backup thinning: 208.82 GB requested (including padding), 5.76 GB available
    Aug 26 00:51:12 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-04-110649
    Aug 26 00:51:12 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649
    Aug 26 00:51:12 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649: 5.76 GB now available
    Aug 26 00:51:12 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-07-115943
    Aug 26 00:51:13 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943
    Aug 26 00:51:13 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943: 5.76 GB now available
    Aug 26 00:51:13 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-08-091634
    Aug 26 00:51:13 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634
    Aug 26 00:51:13 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634: 5.76 GB now available
    Aug 26 00:51:13 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-10-081726
    Aug 26 00:51:13 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726
    Aug 26 00:51:13 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726: 5.76 GB now available
    Aug 26 00:51:13 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-11-094042
    Aug 26 00:51:13 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042
    Aug 26 00:51:13 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042: 5.76 GB now available
    Aug 26 00:51:13 BM-MBP101 com.apple.backupd[6589]: Stopping backup.
    Aug 26 00:51:14 BM-MBP101 com.apple.backupd[6589]: Backup canceled.
    Aug 26 00:51:16 BM-MBP101 com.apple.backupd[6589]: Ejected Time Machine disk image.
    Aug 26 00:51:16 BM-MBP101 com.apple.backupd[6589]: Compacting backup disk image to recover free space
    Aug 26 00:51:56 BM-MBP101 com.apple.backupd[6589]: Completed backup disk image compaction
    Aug 26 00:51:56 BM-MBP101 com.apple.backupd[6589]: Starting standard backup
    Aug 26 00:51:56 BM-MBP101 com.apple.backupd[6589]: Network destination already mounted at: /Volumes/Bastian Time Capsule
    Aug 26 00:51:59 BM-MBP101 com.apple.backupd[6589]: Disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle mounted at: /Volumes/Backup of BM’s MacBook Pro 15"
    Aug 26 00:51:59 BM-MBP101 com.apple.backupd[6589]: Backing up to: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb
    Aug 26 00:52:03 BM-MBP101 com.apple.backupd[6589]: Node requires deep traversal:/ reason:must scan subdirs|
    Aug 26 00:52:03 BM-MBP101 com.apple.backupd[6589]: Node requires deep traversal:/Users/Bastian/Pictures/iPhoto Library reason:must scan subdirs|missed reservation|
    Aug 26 01:01:38 BM-MBP101 com.apple.backupd[6589]: Starting pre-backup thinning: 208.82 GB requested (including padding), 5.76 GB available
    Aug 26 01:01:38 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-04-110649
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649: 5.76 GB now available
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-07-115943
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943: 5.76 GB now available
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-08-091634
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634: 5.76 GB now available
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-10-081726
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726: 5.76 GB now available
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Found partially deleted backup - trying again to delete: 2009-03-11-094042
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042: 5.76 GB now available
    Aug 26 01:01:39 BM-MBP101 com.apple.backupd[6589]: Stopping backup.
    Aug 26 01:01:40 BM-MBP101 com.apple.backupd[6589]: Backup canceled.
    Aug 26 01:01:42 BM-MBP101 com.apple.backupd[6589]: Ejected Time Machine disk image.
    Aug 26 01:01:42 BM-MBP101 com.apple.backupd[6589]: Compacting backup disk image to recover free space
    Aug 26 01:02:22 BM-MBP101 com.apple.backupd[6589]: Completed backup disk image compaction
    Aug 26 01:02:22 BM-MBP101 com.apple.backupd[6589]: Starting standard backup
    Aug 26 01:02:22 BM-MBP101 com.apple.backupd[6589]: Network destination already mounted at: /Volumes/Bastian Time Capsule
    Aug 26 01:02:25 BM-MBP101 com.apple.backupd[6589]: Disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle mounted at: /Volumes/Backup of BM’s MacBook Pro 15"
    Aug 26 01:02:25 BM-MBP101 com.apple.backupd[6589]: Backing up to: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb
    Aug 26 01:02:30 BM-MBP101 com.apple.backupd[6589]: Node requires deep traversal:/ reason:must scan subdirs|
    Aug 26 01:02:30 BM-MBP101 com.apple.backupd[6589]: Node requires deep traversal:/Users/Bastian/Pictures/iPhoto Library reason:must scan subdirs|missed reservation|
    Aug 26 01:12:51 BM-MBP101 com.apple.backupd[6589]: Backup canceled.
    Aug 26 01:12:54 BM-MBP101 com.apple.backupd[6589]: Ejected Time Machine disk image.
    Aug 26 01:12:56 BM-MBP101 com.apple.backupd[6589]: Ejected Time Machine network volume.
    Aug 26 01:29:14 BM-MBP101 com.apple.backupd[7534]: Starting standard backup
    Aug 26 01:29:14 BM-MBP101 com.apple.backupd[7534]: Attempting to mount network destination using URL: afp://Bastian%[email protected]/Bastian%20Time%20Capsule
    Aug 26 01:29:15 BM-MBP101 com.apple.backupd[7534]: Mounted network destination using URL: afp://Bastian%[email protected]/Bastian%20Time%20Capsule
    Aug 26 01:29:17 BM-MBP101 com.apple.backupd[7534]: Failed to mount disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle (DIHLDiskImageAttach returned: 35)
    Aug 26 01:29:17 BM-MBP101 com.apple.backupd[7534]: Waiting 60 seconds and trying again.
    Aug 26 01:29:18 BM-MBP101 com.apple.backupd[7534]: Ejected Time Machine network volume.
    Aug 26 01:30:18 BM-MBP101 com.apple.backupd[7534]: Attempting to mount network destination using URL: afp://Bastian%[email protected]/Bastian%20Time%20Capsule
    Aug 26 01:30:18 BM-MBP101 com.apple.backupd[7534]: Mounted network destination using URL: afp://Bastian%[email protected]/Bastian%20Time%20Capsule
    Aug 26 01:30:19 BM-MBP101 com.apple.backupd[7534]: Failed to mount disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle (DIHLDiskImageAttach returned: 35)
    Aug 26 01:30:19 BM-MBP101 com.apple.backupd[7534]: Waiting 60 seconds and trying again.
    Aug 26 01:30:19 BM-MBP101 com.apple.backupd[7534]: Ejected Time Machine network volume.
    Aug 26 01:31:20 BM-MBP101 com.apple.backupd[7534]: Attempting to mount network destination using URL: afp://Bastian%[email protected]/Bastian%20Time%20Capsule
    Aug 26 01:31:20 BM-MBP101 com.apple.backupd[7534]: Mounted network destination using URL: afp://Bastian%[email protected]/Bastian%20Time%20Capsule
    Aug 26 01:31:21 BM-MBP101 com.apple.backupd[7534]: Failed to mount disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle (DIHLDiskImageAttach returned: 35)
    Aug 26 01:31:21 BM-MBP101 com.apple.backupd[7534]: Giving up after 3 retries.
    Aug 26 01:31:26 BM-MBP101 com.apple.backupd[7534]: Backup failed with error: 31
    Aug 26 01:31:27 BM-MBP101 com.apple.backupd[7534]: Ejected Time Machine network volume.
    Aug 26 01:32:16 BM-MBP101 com.apple.backupd[7534]: Starting standard backup
    Aug 26 01:32:16 BM-MBP101 com.apple.backupd[7534]: Attempting to mount network destination using URL: afp://Bastian%[email protected]/Bastian%20Time%20Capsule
    Aug 26 01:32:16 BM-MBP101 com.apple.backupd[7534]: Mounted network destination using URL: afp://Bastian%[email protected]/Bastian%20Time%20Capsule
    Aug 26 01:32:21 BM-MBP101 com.apple.backupd[7534]: Disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle mounted at: /Volumes/Backup of BM’s MacBook Pro 15"
    Aug 26 01:32:21 BM-MBP101 com.apple.backupd[7534]: Backing up to: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb
    Aug 26 01:32:30 BM-MBP101 com.apple.backupd[7534]: Node requires deep traversal:/Users/Bastian/Pictures/iPhoto Library reason:must scan subdirs|missed reservation|
    Aug 26 01:32:30 BM-MBP101 com.apple.backupd[7534]: Node requires deep traversal:/ reason:must scan subdirs|
    Aug 26 01:54:54 BM-MBP101 com.apple.backupd[7534]: Compacting storage: 208.83 GB requested (including padding), 33.15 GB available before compacting
    Aug 26 01:54:54 BM-MBP101 com.apple.backupd[7534]: Stopping backup.
    Aug 26 01:54:55 BM-MBP101 com.apple.backupd[7534]: Backup canceled.
    Aug 26 01:54:59 BM-MBP101 com.apple.backupd[7534]: Ejected Time Machine disk image.
    Aug 26 01:54:59 BM-MBP101 com.apple.backupd[7534]: Compacting backup disk image to recover free space
    Aug 26 01:55:43 BM-MBP101 com.apple.backupd[7534]: Completed backup disk image compaction
    Aug 26 01:55:43 BM-MBP101 com.apple.backupd[7534]: Starting standard backup
    Aug 26 01:55:44 BM-MBP101 com.apple.backupd[7534]: Network destination already mounted at: /Volumes/Bastian Time Capsule
    Aug 26 01:55:47 BM-MBP101 com.apple.backupd[7534]: Disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle mounted at: /Volumes/Backup of BM’s MacBook Pro 15"
    Aug 26 01:55:47 BM-MBP101 com.apple.backupd[7534]: Backing up to: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb
    Aug 26 01:55:55 BM-MBP101 com.apple.backupd[7534]: Node requires deep traversal:/Users/Bastian/Pictures/iPhoto Library reason:must scan subdirs|missed reservation|
    Aug 26 01:55:55 BM-MBP101 com.apple.backupd[7534]: Node requires deep traversal:/ reason:must scan subdirs|
    Aug 26 02:11:18 BM-MBP101 com.apple.backupd[7534]: Starting pre-backup thinning: 208.83 GB requested (including padding), 33.15 GB available
    Aug 26 02:11:18 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-04-110649
    Aug 26 02:11:18 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649: 33.15 GB now available
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-07-115943
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943: 33.15 GB now available
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-08-091634
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634: 33.15 GB now available
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-10-081726
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726: 33.15 GB now available
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-11-094042
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042: 33.15 GB now available
    Aug 26 02:11:19 BM-MBP101 com.apple.backupd[7534]: Stopping backup.
    Aug 26 02:11:20 BM-MBP101 com.apple.backupd[7534]: Backup canceled.
    Aug 26 02:11:22 BM-MBP101 com.apple.backupd[7534]: Ejected Time Machine disk image.
    Aug 26 02:11:22 BM-MBP101 com.apple.backupd[7534]: Compacting backup disk image to recover free space
    Aug 26 02:12:09 BM-MBP101 com.apple.backupd[7534]: Completed backup disk image compaction
    Aug 26 02:12:09 BM-MBP101 com.apple.backupd[7534]: Starting standard backup
    Aug 26 02:12:09 BM-MBP101 com.apple.backupd[7534]: Network destination already mounted at: /Volumes/Bastian Time Capsule
    Aug 26 02:12:12 BM-MBP101 com.apple.backupd[7534]: Disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle mounted at: /Volumes/Backup of BM’s MacBook Pro 15"
    Aug 26 02:12:12 BM-MBP101 com.apple.backupd[7534]: Backing up to: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb
    Aug 26 02:12:16 BM-MBP101 com.apple.backupd[7534]: Node requires deep traversal:/Users/Bastian/Pictures/iPhoto Library reason:must scan subdirs|missed reservation|
    Aug 26 02:12:16 BM-MBP101 com.apple.backupd[7534]: Node requires deep traversal:/ reason:must scan subdirs|
    Aug 26 02:22:11 BM-MBP101 com.apple.backupd[7534]: Starting pre-backup thinning: 208.83 GB requested (including padding), 33.15 GB available
    Aug 26 02:22:11 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-04-110649
    Aug 26 02:22:12 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649
    Aug 26 02:22:12 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649: 33.15 GB now available
    Aug 26 02:22:12 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-07-115943
    Aug 26 02:22:12 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943
    Aug 26 02:22:12 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943: 33.15 GB now available
    Aug 26 02:22:12 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-08-091634
    Aug 26 02:22:13 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634
    Aug 26 02:22:13 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634: 33.15 GB now available
    Aug 26 02:22:13 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-10-081726
    Aug 26 02:22:13 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726
    Aug 26 02:22:13 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726: 33.15 GB now available
    Aug 26 02:22:13 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-11-094042
    Aug 26 02:22:13 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042
    Aug 26 02:22:13 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042: 33.15 GB now available
    Aug 26 02:22:13 BM-MBP101 com.apple.backupd[7534]: Stopping backup.
    Aug 26 02:22:13 BM-MBP101 com.apple.backupd[7534]: Backup canceled.
    Aug 26 02:22:16 BM-MBP101 com.apple.backupd[7534]: Ejected Time Machine disk image.
    Aug 26 02:22:16 BM-MBP101 com.apple.backupd[7534]: Compacting backup disk image to recover free space
    Aug 26 02:22:55 BM-MBP101 com.apple.backupd[7534]: Completed backup disk image compaction
    Aug 26 02:22:55 BM-MBP101 com.apple.backupd[7534]: Starting standard backup
    Aug 26 02:22:55 BM-MBP101 com.apple.backupd[7534]: Network destination already mounted at: /Volumes/Bastian Time Capsule
    Aug 26 02:22:58 BM-MBP101 com.apple.backupd[7534]: Disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle mounted at: /Volumes/Backup of BM’s MacBook Pro 15"
    Aug 26 02:22:58 BM-MBP101 com.apple.backupd[7534]: Backing up to: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb
    Aug 26 02:23:03 BM-MBP101 com.apple.backupd[7534]: Node requires deep traversal:/Users/Bastian/Pictures/iPhoto Library reason:must scan subdirs|missed reservation|
    Aug 26 02:23:03 BM-MBP101 com.apple.backupd[7534]: Node requires deep traversal:/ reason:must scan subdirs|
    Aug 26 02:32:35 BM-MBP101 com.apple.backupd[7534]: Starting pre-backup thinning: 208.83 GB requested (including padding), 33.15 GB available
    Aug 26 02:32:35 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-04-110649
    Aug 26 02:32:36 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649
    Aug 26 02:32:36 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649: 33.15 GB now available
    Aug 26 02:32:36 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-07-115943
    Aug 26 02:32:36 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943
    Aug 26 02:32:36 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-08-091634
    Aug 26 02:32:36 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943: 33.15 GB now available
    Aug 26 02:32:36 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634
    Aug 26 02:32:36 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634: 33.15 GB now available
    Aug 26 02:32:36 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-10-081726
    Aug 26 02:32:36 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726
    Aug 26 02:32:36 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726: 33.15 GB now available
    Aug 26 02:32:36 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-11-094042
    Aug 26 02:32:37 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042
    Aug 26 02:32:37 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042: 33.15 GB now available
    Aug 26 02:32:37 BM-MBP101 com.apple.backupd[7534]: Stopping backup.
    Aug 26 02:32:37 BM-MBP101 com.apple.backupd[7534]: Backup canceled.
    Aug 26 02:32:39 BM-MBP101 com.apple.backupd[7534]: Ejected Time Machine disk image.
    Aug 26 02:32:39 BM-MBP101 com.apple.backupd[7534]: Compacting backup disk image to recover free space
    Aug 26 02:33:20 BM-MBP101 com.apple.backupd[7534]: Completed backup disk image compaction
    Aug 26 02:33:20 BM-MBP101 com.apple.backupd[7534]: Starting standard backup
    Aug 26 02:33:20 BM-MBP101 com.apple.backupd[7534]: Network destination already mounted at: /Volumes/Bastian Time Capsule
    Aug 26 02:33:22 BM-MBP101 com.apple.backupd[7534]: Disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle mounted at: /Volumes/Backup of BM’s MacBook Pro 15"
    Aug 26 02:33:23 BM-MBP101 com.apple.backupd[7534]: Backing up to: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb
    Aug 26 02:33:29 BM-MBP101 com.apple.backupd[7534]: Node requires deep traversal:/Users/Bastian/Pictures/iPhoto Library reason:must scan subdirs|missed reservation|
    Aug 26 02:33:29 BM-MBP101 com.apple.backupd[7534]: Node requires deep traversal:/ reason:must scan subdirs|
    Aug 26 02:43:06 BM-MBP101 com.apple.backupd[7534]: Starting pre-backup thinning: 208.83 GB requested (including padding), 33.15 GB available
    Aug 26 02:43:06 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-04-110649
    Aug 26 02:43:07 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649
    Aug 26 02:43:07 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649: 33.15 GB now available
    Aug 26 02:43:07 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-07-115943
    Aug 26 02:43:07 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943
    Aug 26 02:43:07 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-08-091634
    Aug 26 02:43:07 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943: 33.15 GB now available
    Aug 26 02:43:07 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-10-081726
    Aug 26 02:43:07 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634
    Aug 26 02:43:07 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634: 33.15 GB now available
    Aug 26 02:43:07 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726
    Aug 26 02:43:07 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726: 33.15 GB now available
    Aug 26 02:43:07 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-11-094042
    Aug 26 02:43:08 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042
    Aug 26 02:43:08 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042: 33.15 GB now available
    Aug 26 02:43:08 BM-MBP101 com.apple.backupd[7534]: Stopping backup.
    Aug 26 02:43:08 BM-MBP101 com.apple.backupd[7534]: Backup canceled.
    Aug 26 02:43:11 BM-MBP101 com.apple.backupd[7534]: Ejected Time Machine disk image.
    Aug 26 02:43:11 BM-MBP101 com.apple.backupd[7534]: Compacting backup disk image to recover free space
    Aug 26 02:43:57 BM-MBP101 com.apple.backupd[7534]: Completed backup disk image compaction
    Aug 26 02:43:57 BM-MBP101 com.apple.backupd[7534]: Starting standard backup
    Aug 26 02:43:57 BM-MBP101 com.apple.backupd[7534]: Network destination already mounted at: /Volumes/Bastian Time Capsule
    Aug 26 02:44:00 BM-MBP101 com.apple.backupd[7534]: Disk image /Volumes/Bastian Time Capsule/BM’s MacBook Pro 15"_0017f2d2f0b3.sparsebundle mounted at: /Volumes/Backup of BM’s MacBook Pro 15"
    Aug 26 02:44:01 BM-MBP101 com.apple.backupd[7534]: Backing up to: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb
    Aug 26 02:44:04 BM-MBP101 com.apple.backupd[7534]: Node requires deep traversal:/ reason:must scan subdirs|
    Aug 26 02:44:04 BM-MBP101 com.apple.backupd[7534]: Node requires deep traversal:/Users/Bastian/Pictures/iPhoto Library reason:must scan subdirs|missed reservation|
    Aug 26 02:53:44 BM-MBP101 com.apple.backupd[7534]: Starting pre-backup thinning: 208.83 GB requested (including padding), 33.15 GB available
    Aug 26 02:53:44 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-04-110649
    Aug 26 02:53:45 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649
    Aug 26 02:53:45 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-04-110649: 33.15 GB now available
    Aug 26 02:53:45 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-07-115943
    Aug 26 02:53:45 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943
    Aug 26 02:53:45 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-07-115943: 33.15 GB now available
    Aug 26 02:53:45 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-08-091634
    Aug 26 02:53:45 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634
    Aug 26 02:53:45 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-08-091634: 33.15 GB now available
    Aug 26 02:53:45 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-10-081726
    Aug 26 02:53:46 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726
    Aug 26 02:53:46 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-10-081726: 33.15 GB now available
    Aug 26 02:53:46 BM-MBP101 com.apple.backupd[7534]: Found partially deleted backup - trying again to delete: 2009-03-11-094042
    Aug 26 02:53:46 BM-MBP101 com.apple.backupd[7534]: Error -47 deleting backup: /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042
    Aug 26 02:53:46 BM-MBP101 com.apple.backupd[7534]: Deleted backup /Volumes/Backup of BM’s MacBook Pro 15"/Backups.backupdb/BM’s MacBook Pro 15" (3)/2009-03-11-094042: 33.15 GB now available
    Aug 26 02:53:46 BM-MBP101 com.apple.backupd[7534]: Stopping backup.
    Aug 26 02:53:46 BM-MBP101 com.apple.backupd[7534]: Backup canceled.
    Aug 26 02:53:49 BM-MBP101 com.apple.backupd[7534]: Ejected Time Machine disk image.
    Aug 26 02:53:49 BM-MBP101 com.apple.backupd[7534]: Compacting backup disk image to recover free space
    Aug 26 02:54:29 BM-MBP101 com.apple.backupd[7534]: Completed backup disk image compaction
    Aug 26 02:54:29 BM-MBP101 com.apple.backupd[7534]: Starting standard backup

    BastianM wrote:
    Thank you for your feedback. I tried repairing in Disk Utility, but it didn't find any problems.
    I think it may have to do with some of the things mentioned in this article about new hardware and time machine backups: http://www.tuaw.com/2009/07/20/mac-301-time-machine-backups-after-your-macs-brai n-surgery/
    Reason is that I changed my Macbook Pro for a new model Unibody one at the same time I upgraded to snow Leopard.
    How did you get the data, etc., from the old Mac to the new one?
    Not sure if these instructions play nice with Snow Leopard, and frankly I'm a bit amazed this doesn't work smoothly out of the box. People must upgrade their machines all the time, and its only logical you'll want to pick up from your last backup.
    If someone who understands about these things tells me there's a good chance that I'll get things working if I'll follow the instructions in the article, I'll give it a go.
    No. Those instructions are for a *completely different* problem: if you have the Logic board replaced. Because the hardware on the Logic board contains your Mac's "Ethernet Address," which TM uses to keep one Mac's backups separate from another's, TM starts a whole new "sequence" of backups. It does not cause what you're seeing.
    Since +*Repair Disk+* didn't find any directory problems, the corruption must be within the backup structure itself -- the multi-links that TM uses. That means your best bet is to erase the disk completely and let TM start fresh, as in my last post.
    Have you ever moved, change, or deleted anything in your backups via the Finder?

  • Stuck in endless loop with File.openDialog

    I'm experiencing a new issue for me. One I have never run across in using this same function over the years. I'm using a line like this to locate a file.
    var itemOut =  new File.openDialog(editText.text,"", false);
    For some reason though, after I select the file, it pops up another dialog and won't ever quit popping another one up after I click OK. I'm running the scripts from the ESTK with AE 12.2.

    I think it could be something to do with my UI panel. If I make a simple test script, it doesn't fail. But in my main script it does. Here is  snippet of the code where I'm calling the function and prompt.
                dlg = new Window(alertBuilderResource);
                dlg.locPnl.dataFile.locBtn.onClick = function(){findSomething("file", dlg.locPnl.dataFile.et)};
               return dlg
    function findSomething(itemType, editText){
         if(itemType == "file"){
              var itemOut =  new File.openDialog(editText.text,"", false);
              alert(itemOut.name);
              }else{
              var itemOut =  new Folder.selectDialog(stringPrompt);         
            if(itemOut){
            $.writeln(itemOut.toString());
            editText.text = itemOut.toString().replace(/%20/g," ");
            }else{
             var itemOut = "there was an error, please try again";  
            return itemOut

Maybe you are looking for