Viewing 15 posts - 106 through 120 (of 257 total)
The logs are getting full every so often and we do not know why. One of the reasons could be that we are running profiler from time to time.
Thanks.
January 17, 2011 at 7:04 am
I found the solution:
exec sp_msforeachdb ' use[?];
DECLARE @DBName VarChar(150);
SET @DBNAME = db_name();
DUMP TRAN @DBNAME WITH TRUNCATE_ONLY'
January 14, 2011 at 2:39 pm
I am concerned because ghost cleanup is running on databases that does not have any activity what so ever. These are dead dbs and yet ghost cleanup is running on...
January 14, 2011 at 11:53 am
Yes, that's what I meant. That is certainly great information. Thanks for your time.
January 14, 2011 at 6:10 am
Thanks for the articles. So there is no way of knowing whether the object is cached or not. But what I can look for is consistency whether the same object...
January 13, 2011 at 2:32 pm
Hello Leo,
What do you mean by cache reads and writes. It is misleading.
Thanks.
January 13, 2011 at 1:44 pm
I found a solution which is not perfect but doable:
SELECT Name, LastWaitType, Crdate,
CASE WHEN Last_Batch > Login_Time
THEN Last_Batch ELSE Login_Time END AS [LastTouched]
FROM SysDatabases o
LEFT JOIN SysProcesses s
ON...
December 29, 2010 at 8:20 am
But how would you use sp_msforeachdb with Niconecy's code?
December 29, 2010 at 6:21 am
That is for only one database, but what if i want to find the search string on all databases on a particuar instance?
Thanks.
December 28, 2010 at 10:35 am
Thanks for your response. Exactly how would I do it?
December 23, 2010 at 8:13 am
Viewing 15 posts - 106 through 120 (of 257 total)