Just a useful SQL query i picked when dealing with a Asynchronous Problem on a Clients production server. The query shows the errors in the database, with a count of the occurrences
select Message as M, Count (Message) from AsyncOperationBase
Group By Message
Order By Message