It is hard to say if this would address the specific problem but this is
about as close as you can get w/o a restart:
dbcc dropcleanbuffers
DBCC FREESYSTEMCACHE ( 'ALL' ) WITH MARK_IN_USE_FOR_REMOVAL
exec sp_msforeachdb 'alter ? set single_user with rollback immediate'
exec sp_msforeachdb 'alter ? set multi_user with rollback immediate'
Be careful. I'd use this like a hail mary with 2 seconds left.

Signature
Jason Massie
Web: http://statisticsio.com
RSS: http://feeds.feedburner.com/statisticsio
> Hi,
>
[quoted text clipped - 11 lines]
>
> Chris
Chris Wood - 26 Mar 2008 18:17 GMT
That is pretty harsh!!! I was hoping that SQL2005 was more robust than
SQL2000.
Thanks
Chris
> It is hard to say if this would address the specific problem but this is
> about as close as you can get w/o a restart:
[quoted text clipped - 20 lines]
>>
>> Chris