Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Precise for SQL Server displays duration values for several entities. The following table describes the duration value for each type of entity.

Table 3- 1 Duration values for entities

EntityDescription
Current sessionThe time that has elapsed since the session started (login time). This is not the time the session was active executing statements. For example, if a session was connected to SQL Server for one hour without executing any statement, the duration will still be one hour.
Programs (such as, Logins, Machines, DB Users, Databases, time units)

The elapsed time of the sessions executing the program.

Info

The time is not measured from the login time (as it is in the Current session entity) but from the moment the Collector started.

The average duration counter displays the average time each program has been running.

Statement (batch)

The time that elapsed while the statement was executed. This is very similar to the duration of programs (see above); but since the statement is almost always active, this duration also indicates the time the statement was active.

The average duration counter displays the average execution time of the statement.

If Interpoint is installed (for SAP, PeopleSoft, Siebel or COM+), the duration and average duration fields have no significant meaning and can be ignored.

...

The In MS-SQL session states signify that the session is performing activities in the SQL Server. The following table describes In MS-SQL session states.

Table 3- 2 In MS-SQL session states

IconIn  MS-SQL StateDescription
Image Modified
Using CPUThe session is currently executing and not waiting for any other event. Using CPU can indicate a performance issue if the value exceeds 90% of the In MS-SQL value. When SQL Server does read ahead, the session does not suffer from I/O wait, but may still show a great deal of CPU usage.
Image Modified
I/O WaitThe session is waiting for an I/O operation to be completed or terminated. I/O operation is much slower than CPU operation so it is very important to monitor whether an application is suffering from I/O wait. I/O can be easily resolved by reorganizing files across disks or by adding new disks to your system.
Image Modified
Tempdb Wait

The session is waiting for an I/O operation or a buffer wait on tempdb pages. A high value may indicate a bottleneck in tempdb. Tempdb is the most heavily shared resource across the entire instance and can affect the performance of all applications. It is therefore important to monitor its usage.

SQL Server 2005 uses tempdb for row versioning and online index builds, in addition to managing temporary objects, sorting and hashing.

Image Modified
Lock WaitThe session is waiting for a lock to be released. The lock is held by another session.
Image Modified
Redo Log Buffer Wait

The session is waiting for an operation of the log file to terminate. This state is generally encountered during a commit or rollback operation.

A high log wait value may indicate a problem with the commit frequency in the processes experiencing massive updates to data.

Image Modified
Memory WaitThe session is waiting for an internal resource to be freed. This state is divided into substates.
Image Modified
Remote WaitThe session is waiting for a remote query to terminate. Some of the DBCC commands that check the database pages also create this type of wait. A remote resource can be either SQL Server and Oracle.
Image Modified
CLR WaitThe session is currently performing a common language runtime (CLR) execution and is waiting for another CLR task or event to be initiated or completed. All CLR-related waits are grouped together under this category. This state is only available for SQL Server 2005 instances.
Image Modified
Buffer WaitThe session is completing a network I/O operation. A high value can occur if results from a large result set are transferred to the client using shared memory netlibs or TCP/IP. In this case it is important to verify that only required rows and columns are returned.

About internal waits

The Internal Waits view displays internal waits, indicating that the session is waiting for an internal resource to be freed. An Internal Wait is divided into substates.

The following table describes the internal wait substates reported by Precise for SQL Server.

Table 3-3 Internal wait states

Internal StateDescription
Buffer PoolGroups together the events that show contention on pages in the buffer pool. Buffer wait on tempdb pages are considered to be part of tempdb wait.
LatchThe session is waiting for an internal lock to be released.
ParallelThe session is waiting for one of its sub-threads to complete its operation.
DTC

Aggregates waits that occur when Distributed Transaction Coordinator (DTC) sessions have to wait for each other.

This state is only available for SQL Server 2005 instances.

DB Mirror

Aggregates the new waits that occur when DB mirroring is performed, such as the waits that occur if the communication layer used by DB mirroring becomes backlogged.

This state is only available for SQL Server 2005 instances.

Profiler

Aggregates a number of states associated with the SQL Profiler and lets you see how much of the database resources it consumes.

This state is only available for SQL Server 2005 instances.

Memory

Aggregates several types of waits that indicate that a session is waiting for memory to be allocated to it.

This state is only available for SQL Server 2005 instances.

Backup

Includes the wait type that commonly occurs when a Backup command is performed.

This state is only available for SQL Server 2005 instances.

Other Internal waits

Aggregates the following types of waits:

  • Full text waits. Includes wait types dedicated to the full text indexing service and appears whenever a full text index is in progress.
  • HTTP waits. Includes waits that occur when HTTP and SOAP operations are executing.
  • Query notifications. Aggregates a number of states associated with the synchronization of Query Notification sessions.

This state is only available for SQL Server 2005 instances.

About lock waits

The Locking view displays a breakdown of lock waits, indicating that the session is waiting for an application lock to be freed. Lock waits are divided into substates.

Table 3- 4 Lock wait states

Lock WaitDescription
Row lockThe lock is being held on a row in a heap table.
Key lockThe lock is being held on a key in an index or a row in a clustered index.
Page lockThe lock is being held on a page.
Table lockThe lock is being held on the entire table.
Other lockIncludes locks on database, extents and files.
MD statistics lockIndicates a metadata lock is being held on the statistics of a table or index.
MD partition lockIndicates a metadata lock is being held on a partition function or partition schema.
MD other lockIndicates a general metadata lock is being held.

About Non-In MS-SQL states

The Non-In MS-SQL session states signify activities performed outside of the SQL Server. The following table describes Non-In MS-SQL session states.

Table 3- 5 Non-In MS-SQL session states

IconStateDescription
Image Modified
Request Wait

The session is waiting for the client to issue a request.

A high value can indicate that a connection pool is too large and that many connections have been left open and are not active.

Image Modified
Parallel Exchange WaitThe thread in a parallel session is waiting for data exchange from another thread.
Image Modified
IdleIndicates that the session is waiting for something other than a user request or is executing the WAITFOR DELAY command.

About Statement identifiers

...

The Statistics tab provides many performance counters grouped into several predefined overtime graphs that enable you to locate various aspects of performance problems, such as CPU, paging, I/O, and network. The Statistics tab can be used to monitor your system's current state as well as previous states. It is also possible to monitor a specific counter associated with a particular performance group by selecting the required counter.

 

...

.

...