Browse by Tags

All Tags » performance » cache
  • List of CPU based DMVs in SQL Server 2005 - best used for hardware analysis

    Dynamic Management Views (DMV) are very useful to get server state information to monitor the status, but not always you have to still continue in monitoring using SYSMON & PROFILER that are available by default with SQL installation. The engine within SQL Server 2005 improves accuracy by using the high-resolution counters that are capable to ...
    Posted to SQL Server Aggregator (Weblog) by Anonymous on August 6, 2007
  • Retrieve SessionID and batch information

    You may be aware using SP_WHO or SP_WHO2 statements you can get information about a session id and statement that is running since good olden days of SQL Server. Within SQL 2005 version you can take help of TSQL: SELECT session_id, text FROM sys.dm_exec_requests s1 CROSS APPLY sys.dm_exec_sql_text(sql_handle) AS s2 Similarly you can look at ...
    Posted to SQL Server Aggregator (Weblog) by Anonymous on July 24, 2007