Title: Re: Avoiding database corruption?
on 6/7/04 4:37 PM, Barry Wainwright at [EMAIL PROTECTED] wrote:

> If you are going to back up the database, make sure the script quits all
> office apps AND the database Daemon (tell app "Microsoft Database Daemon" to
> quit) before you take the copy. Taking a copy with the daemon still running
> is likely to create an incomplete copy because file buffers in the daemon
> have not been written back to disk.
>

So, Barry, if I understand you correctly, my script which quits Entourage2004 before my nightly backup which reads:

tell application "Microsoft Entourage"
    repeat while connection in progress is true
       delay 1
    end repeat
   quit
end
tell

:should really read:

tell application "Microsoft Entourage"
    repeat while connection in progress is true
       delay 1
    end repeat
   quit
end
tell
tell
application "Microsoft Database Daemon"
    quit
end
tell



Since I don’t normally run other Office apps overnight, I’m not going to worry about them.

--
Norman Ferguson | Dir of Technology Services | Tekgnosys
1917 Maylin Drive; Suite 103, Salem VA 24153
cell: 540-819-4014 • ofc: 540-387-4422
iChatAV: [EMAIL PROTECTED] • http://www.tekgnosys.com

Reply via email to