How can we help you today? How can we help you today?
markcw

Activity overview

Latest activity by markcw

Changes were made and retested without success. Is there anything else we can do to stop all database queries and stats from occurring? We really just need server level monitoring along with SQL Jobs and deadlocks for that server only. I do not recall this happening on SQL Monitor until 3.0+. The database related commands that still jump to the top of query execution time due to 1500+ databases. commands below are the top offenders IF EXISTS (SELECT * FROM tempdb..sysobjects WHERE id=OBJECT_ID('tempdb..#DBINFO')) DROP TABLE #DBINFO CREATE TABLE #DBINFO ( [ParentObject] NVARCHAR(255), [Object] NVARCHAR(255), [Field] NVARCHAR(255), [Value] NVARCHAR(255) ); IF IS_SRVROLEMEMBER('sysadmin') = 1 INSERT INTO #DBINFO EXECUTE('DBCC DBINFO WITH TABLERESULTS'); SET NOCOUNT ON; SELECT DB_NAME() AS [DB_NAME()], CONVERT(DATETIME, [Value], 121) AS [CONVERT(DATETIME, [Value]], 121)] FROM #DBINFO WITH ( NOLOCK ) WHERE [Field] = 'dbi_dbccLastKnownGood'; DROP TABLE #DBINFO; WITH query_stats AS ( SELECT sql_handle , plan_handle , statement_start_offset , statement_end_offset , MIN(creation_time) AS creation_time , MAX(last_execution_time) AS last_execution_time , SUM(execution_count) AS execution_count , SUM(total_worker_time_ms) AS total_worker_time_ms , SUM(total_logical_writes) AS total_logical_writes , SUM(total_logical_reads) AS total_logical_reads , SUM(total_physical_reads) AS total_physical_reads , SUM(total_elapsed_time_ms) AS total_elapsed_time_ms FROM #query_plan_stats GROUP BY sql_handle , plan_handle , statement_start_offset , statement_end_offset ) , filtered_query_stats AS DBCC DBINFO WITH TABLERESULTS / comments
Changes were made and retested without success. Is there anything else we can do to stop all database queries and stats from occurring? We really just need server level monitoring along with SQL Jo...
0 votes
Engineers could not find that file on the SQL monitor server in that folder. Is the file on the SQL monitor server or the monitored server? Sorry, I do not have direct access to servers. / comments
Engineers could not find that file on the SQL monitor server in that folder. Is the file on the SQL monitor server or the monitored server? Sorry, I do not have direct access to servers.
0 votes
Performance of SQL Monitor on 1500+ databases on SQL Server
We have a SQL server 2008 SP3 with 1500+ databases being monitored by SQL Monitor version 3.1.0.118. Any suggestions on how to reduce the query times for some of the SQL Monitor queries or turn of...
5 followers 10 comments 0 votes
Enhanced project options
We just upgraded to SQL Data Compare 10. I propose project options for a new category called 'Comparison Results'. The options would be for the comparison results report only. This is used by us to...
2 followers 3 comments 0 votes
I was able to get the results I wanted by using the Options button on the 'Add objects to Project' window. Thanks for pointing that out to me. / comments
I was able to get the results I wanted by using the Options button on the 'Add objects to Project' window. Thanks for pointing that out to me.
0 votes
I have emailed a screenshot of the results from your suggestions which did not resolve. Perhaps this feature could be added to future ideas. / comments
I have emailed a screenshot of the results from your suggestions which did not resolve. Perhaps this feature could be added to future ideas.
0 votes
Limit Dependencies window objects
Is there any way to limit the 'Dependencies' window to only tables or only triggers or only views or only external references or all. This would be similar to the dropdown search options in the â€...
2 followers 3 comments 0 votes