标签:forum from sdn nta soft span class sed delay
The Connect item you reference appears to be a behaviour caused by databases being set to AutoClose.
This means that a database has to be started again before it can be examined.
As you can imagine, if this is your case, then there will be delays.
Perhaps running this query would alert you to potential problems.
SELECT name, is_auto_close_on, is_auto_shrink_on
FROM master.sys.databases AS dtb
WHERE is_auto_close_on = 1 OR is_auto_shrink_on = 1
ORDER BY name
I would suggest turning autoclose off if it happens to be turned on.
(Autoshrink likewise causes fragmentation, which can lead to other performance problems.)
Of course, this only matters if this describes your problem.
标签:forum from sdn nta soft span class sed delay
原文地址:http://www.cnblogs.com/chucklu/p/7905309.html