Browse by Tags

All Tags » tsql » SQL Server » databases
  • TSQL to detect long running queries against the database

    When I'm performing a performance analysis on a 24/7 application and dealing with PSS I had been given the following TSQL to identify the long running queries against a database. select r.session_id, s.host_name, s.program_name, s.host_process_id, r.status, r.wait_time,wait_type,r.wait_resource, substring(qt.text,(r.statement_start_offset/2) +1, ...
    Posted to SQL Server Aggregator (Weblog) by Anonymous on August 29, 2007
  • How to Analyze the PERFMON (SYSMON) data?

    As you may aware the PERFMON (SYSMON) utility provides much information to analyze on the systems resource usage, I support and suggest to make use of this tool as much as you can with a default templates within our environment. You may be aware the data is saved as a file with .BLG extension which can be opened again using this SYSMON tool. I ...
    Posted to SQL Server Aggregator (Weblog) by Anonymous on August 21, 2007