How can we help you today? How can we help you today?
dylanfinney

Activity overview

Latest activity by dylanfinney

Repository IP Address Issue
Hello, I'm having a strange issue where I cannot connect to my running repository. The service is running and I installed the client on the machine and verified that I could connect locally, howev...
3 followers 4 comments 0 votes
dlkj wrote: Hi Dylan, I take it from the forum thread that you are regularly seeing two types of long running queries that are coming from SQL Response One relating to xp_readerrorlog - this has now been resolved by truncating the error log One relating to DBCC TRACESTATUS - which is still occuring The error log reading was due to extremely large log files. I had been logging all connections (successful and failed) and one of my 3rd party applications is log in/out happy so the log files grew to be very large. I cycled the logs and that problem has ceased. I ran the queries that you provided, had to change it to execute (code below, missing columns in temp table). It was under a second on each of the servers that I see the problem. I have several more instances of long running query alerts coming from SQL Response, however I can't get a query fragment from any of the alerts! [image] I will keep looking at them today and post another query fragment once I've found an alert with the data. CREATE TABLE #dbccstat ( TraceFlag INT, Status INT, GLOBAL INT, Session INT ) INSERT INTO #dbccstat EXEC('DBCC TRACESTATUS(1204) WITH NO_INFOMSGS') DECLARE @status INT SELECT @status = Status FROM #dbccstat IF @status = 0 BEGIN DBCC TRACEON( 1204, -1 ) WITH NO_INFOMSGS; END DROP TABLE #dbccstat / comments
dlkj wrote: Hi Dylan, I take it from the forum thread that you are regularly seeing two types of long running queries that are coming from SQL Response One relating to xp_readerrorlog - this has ...
0 votes
Oops, found the problem (at least on xp_readerrorlog). I've got an application that's log in/out happy. My current SQL Server log is almost 500k records in length. / comments
Oops, found the problem (at least on xp_readerrorlog). I've got an application that's log in/out happy. My current SQL Server log is almost 500k records in length.
0 votes