Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Permanently destroy zombie iCal notifications' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Permanently destroy zombie iCal notifications
Authored by: twchad on Mar 12, '12 01:00:57PM

Update: In Lion, do a search for Calendar Cache and delete after shutting iCal down. Thanks for the info!



[ Reply to This | # ]
Permanently destroy zombie iCal notifications
Authored by: davidktw on Jun 07, '12 02:18:08PM

I believe I have found a better approach to this problem.

$HOME/Library/Calendars/Calendar\ Cache is a sqlite3 embedded database.

1) Close your Apple iCal.
2) Open your Terminal or any shell application
3) Go to the above directory "$HOME/Library/Calendars"
4) Open the db using "sqlite3 Calendar\ Cache"
5) ".tables" will show you all the tables in this database
6) "select * from ZMESSAGE" will show you all the pending notifications
7) To remove all the pending notifications, use "delete from ZMESSAGE;"
8) to quit, type ".quit"

Hope it helps anyone here.



[ Reply to This | # ]
Permanently destroy zombie iCal notifications
Authored by: wmertens on Sep 30, '13 05:38:01AM

Thanks, that worked nicely!



[ Reply to This | # ]