Versions Compared

Key

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

...

Info

Since the Lock tree represents the locks that are currently occurring, and the lock breakdown represents the duration of locks occurring during the last minute, it is possible that a situation may occur whereby a lock was freed, but since the last minute has not yet passed, the lock tree will display the message ‘No , "No locks found' " while the Lock Breakdown grid still shows lock duration.

...

View AreaDescription
Session identifiers

Displays information on the session identifier's connection details, session-related statistics and a breakdown of session resource consumption, during the last minute.

  • Session identifiers:
    • State. Current state of the session.
    • Status. Current status of the session as reported by SQL Server, such as:
      • Sleeping. Session is idle.
      • Runnable. SPID is currently executing.
      • Dormant. Same as Sleeping.
      • Rollback. Session is rolling back the transaction.
      • Defwakeup. Session is waiting for a resource that is in the process of being freed.
        The waitresource wait resource field should indicate the resource in question.
      • Spinloop. Session is waiting while attempting to acquire a spinlock used for concurrent control on Symmetric Multi-Processing (SMP) systems.
        See SQL Server Books Online for more information.
    • Login Time. Time the session started.
    • Last Batch Time. If the session is currently executing a batch this field displays the time the batch started; otherwise it displays the time the previous batch finished executing.
    • Duration. Time elapsed since login time.
    • Idle Time. Time elapsed since last batch.
    • Open Transactions. Number of open transactions for the SPID.
    • Parallel Sessions. Current number of subthreads used to execute a batch in parallel. This counter is calculated from the ecid column in sysprocesses. It enables you to verify that SQL Server uses the best execution plan for the current statement.
    • Blocked By. If the session is blocked by another session, displays the SPID of the blocker session.
    • Wait Type. An internal SQL Server field that signifies the current wait identifier, used by the Collector to assign a Session State.
    • Wait Time. If the session is waiting this field displays the current wait time in milliseconds.
Connection

A connection includes session identifiers, such as, database, login, machine, user and work type, as reported by sysprocesses. In ERP systems (if the appropriate ERP extension is installed), Precise for SQL Server replaces some identifiers as follows:

In SAP:

  • Login -> SAP User
  • Work Type -> Dialog, Update, Spool, Background, Enqueue
  • Machine -> User Application

In PeopleSoft:

  • Login -> PS User ID
  • Work Type -> Interactive, Batch

In Siebel:

  • Login -> Siebel User
  • Program -> Siebel View
  • Machine -> Siebel Server
  • Work Type -> Interactive, Batch, Background

In COM+:

  • Work Type -> COM+
Statistics

Displays information on the following statistical parameters:

  • CPU Time. CPU time for the sessions during the last minute.
  • Physical I/O Operations. Total number of physical I/O requests performed by the session during the last minute.
  • Memory Usage. Number of pages in the procedure cache that are currently allocated to the SPID. A negative number indicates that the process is freeing memory allocated by another process.
In MS-SQL (Last minute)

Displays the resource consumption breakdown of the session during the last minute (that is, 60 samples of the Collector). In addition to the resource distribution, the view displays the number of sessions in each state during the last sample.

It is important to remember that since this view only displays the last minute's activities, you will always be viewing the activities that occurred during the last minute and not the activities that occurred since the last refresh action.

The following information is displayed:

  • State. Displays the In MS-SQL state.
  • MS-SQL. Graphical representation of the Time column.
  • Time. Amount of time the selected entity was in this state.
  • %. Percentage of time the selected entity was in this state.
Info

All the information displayed in this table represents information collected during the last minute, with the exception of the Sessions column, which represents the number of sessions, in the last sample, that were in a particular state.

See About session states.

...

View AreaDescription
Locks

Displays lock wait duration broken down into lock levels such as Table, Page and Key, for the selected Session, during the last minute. The sessions that are currently involved in a locking or blocking situation with the selected session are displayed in tree format.

Since the Lock tree represents the locks that are currently occurring, and the lock breakdown represents the duration of locks occurring during the last minute, it is possible that a situation may occur whereby a lock was freed, but since the last minute has not yet passed, the lock tree will display the message ‘No locks found' while the Lock Breakdown grid still shows lock duration.

The Lock tree provides the necessary information to determine the following information for each blocking chain.

A yellow lock indicates that the session is currently locking other sessions but is not itself blocked.

A red lock indicates the session is currently blocked by another session. Note that a session may also block other sessions while being blocked by itself.

To gain a better understanding of the lock tree take a closer look at its structure. Notice that the session located in the root of each chain is the session that blocks all others. Each session directly blocks all sessions positioned one level beneath it.

The Lock Tree displays the SPID, program name, the object being blocked and the lock type.

The Lock breakdown (Last minute) displays the Lock Wait duration broken down into lock levels such as Table, Page and Key, for the selected session, during the last minute:

  • Lock Level. Such as, Row, Key, Page, Table, or Other. “Other” Other includes all other locks.
  • Lock Wait. A graphical representation of the data displayed in the Time column.
  • Time. Amount of time the selected session was locked at the specified lock level.
  • %. Percentage of time the selected session was locked at the specified lock level.
Info

The table only displays lock levels that the selected session was blocked by. If the selected session was not blocked, the information area remains empty.

...

ColumnDescription
IconIndicates if there is a session waiting for the object.
ObjectDisplays the object being blocked.
SessionsNumber of sessions that hold locks on the object or are blocked while trying to acquire a lock on the object.
LocksTotal number of locks, broken down into the following lock types: Exclusive, Update, Shared, Intent Exclusive, Intent Update, and Intent Shared.
Exclusive

Indicates how many of the locks placed on the sessions were exclusive locks and shows a breakdown of the lock modes into lock levels, such as, Table, Row, Key, and Page.

When exclusive locks are placed on a resource, the holding session is granted exclusive access to that resource and it can perform modification operations.

Update

Indicates how many of the locks placed on the sessions were update locks and shows a breakdown of the lock modes into lock levels, such as, Table, Row, Key, and Page.

Update locks are used to prevent deadlocks. A deadlock occurs when more than one session intends to update a resource and tries to lock the resource for future potential updates.

The update lock is an interim stage which is promoted to an exclusive lock when the update is actually made.

Shared

Indicates how many of the locks placed on the sessions were shared locks and shows a breakdown of the lock modes into lock levels, such as, Table, Row, Key, and Page.

When there are shared locks on an object, concurrent transactions can read but not modify the resource.

Intent Exclusive

Indicates how many of the locks placed on the sessions were intent exclusive locks and shows a breakdown of the lock modes into lock levels, such as, Table, Row, Key, and Page.

Indicates that a transaction intends to modify some subordinate resources in the lock hierarchy by placing exclusive locks on those particular resources.

Intent Update

Indicates how many of the locks placed on the sessions were intent update locks and shows a breakdown of the lock modes into lock levels, such as, Table, Row, Key, and Page.

Indicates that a transaction intends to update some subordinate resources in the lock hierarchy, at a later stage, by placing update locks on those particular resources.

Intent Shared

Indicates how many of the locks placed on the sessions were intent shared locks and shows a breakdown of the lock modes into lock levels, such as, Table, Row, Key, and Page.

Indicates that a transaction intends to read but not modify some subordinate resources in the lock hierarchy by placing shared locks on those particular resources.

...

View AreaDescription
Session identifies

Displays the following information on the session's identifiers:

  • State. Current state of the session.
  • Status. Current status of the session as reported by SQL Server, such as:
    • Sleeping. Session is idle.
    • Runnable. SPID is currently executing.
    • Dormant. Same as Sleeping.
    • Rollback. Session is rolling back the transaction.
    • Defwakeup. Session is waiting for a resource that is in the process of being freed.
      The waitresource wait resource field should indicate the resource in question.
    • Spinloop. Session is waiting while attempting to acquire a spinlock used for concurrent control on Symmetric Multi-Processing (SMP) systems.

See SQL Server Books Online for more information.

  • Login Time. Time the session started.
  • Last Batch Time. If the session is currently executing a batch this field displays the time the batch started; otherwise it displays the time the previous batch finished executing.
  • Duration. Time elapsed since login time.
  • Open Transactions. Number of open transactions for the SPID.
  • Parallel Sessions. Current number of subthreads used to execute a batch in parallel. This counter is calculated from the ecid column in sysprocesses. It enables you to verify that SQL Server uses the best execution plan for the current statement.
  • Blocked by. If the session is blocked by another session, displays the SPID of the blocker session.
  • Wait Type. An internal SQL Server field that signifies the current wait identifier, used by the Collector to assign a Session State.
  • Wait Time. If the session is waiting this field displays the current wait time in milliseconds.
Connection

A connection includes session identifiers, such as, database, login, machine, user and work type, as reported by sysprocesses.

In ERP systems (if the appropriate ERP extension is installed), Precise for SQL Server replaces some identifiers as follows:

In SAP:

  • Login -> SAP User
  • Work Type -> Dialog, Update, Spool, Background, Enqueue
  • Machine -> User Application

In PeopleSoft:

  • Login -> PS User ID
  • Work Type -> Interactive, Batch

In Siebel:

  • Login -> Siebel User
  • Program -> Siebel View
  • Machine -> Siebel Server
  • Work Type -> Interactive, Batch, Background

In COM+:

  • Work Type -> COM+
Statistics

Displays information on the following statistical parameters:

  • CPU Time. CPU time for the sessions during the last minute.
  • Physical I/O Operations. Total number of physical I/O requests performed by the session during the last minute.
  • Memory Usage. Number of pages in the procedure cache that are currently allocated to the SPID. A negative number indicates that the process is freeing memory allocated by another process.
In MS-SQL (Last minute)

Displays the resource consumption breakdown of the session during the last minute (that is, 60 samples of the Collector). In addition to the resource distribution, the view displays the number of sessions in each state during the last sample.

It is important to remember that since this view only displays the last minute's activities, you will always be viewing the activities that occurred during the last minute and not the activities that occurred since the last refresh action.

The following information is displayed:

  • State. Displays the In MS-SQL state.
  • MS-SQL. Graphical representation of the Time column.
  • Time. Amount of time the selected entity was in this state.
  • %. Percentage of time the selected entity was in this state.
Info

All the information displayed in this table represents information collected during the last minute, with the exception of the Sessions column, which represents the number of sessions, in the last sample, that were in a particular state.

See About session states.

...

The sessions that are currently involved in a locking or blocking situation with the selected session are displayed in tree format. Since the Lock tree represents the locks that are currently occurring, and the lock breakdown represents the duration of locks occurring during the last minute, it is possible that a situation may occur whereby a lock was freed, but since the last minute has not yet passed, the lock tree will display the message ‘No , "No locks found' " while the Lock Breakdown grid still shows lock duration.

...

View AreaDescription
Lock tree

The Lock tree provides the necessary information to determine the following information for each blocking chain:

  • A yellow lock indicates that the session is currently locking other sessions but is not itself blocked.
  • A red lock indicates the session is currently blocked by another session. Note that a session may also block other sessions while being blocked by itself.
Lock breakdown (Last minute)

The Lock breakdown (Last minute) displays the Lock Wait duration broken down into lock levels such as Table, Page and Key, for the selected session, during the last minute:

  • Lock Level. Such as, Row, Key, Page, Table, or Other. “Other” Other includes all other locks.
  • Lock Wait. A graphical representation of the data displayed in the Time column.
  • Time. Amount of time the selected session was locked at the specified lock level.
  • %. Percentage of time the selected session was locked at the specified lock level.
Info

The table only displays lock levels that the selected session was blocked by. If the selected session was not blocked, the information area remains empty.

...

The Current tab provides an almost real-time picture of the performance and behavior of your SQL Server instance (or part of your instance). The Current tab displays information on the last time slice of activity, unless otherwise configured as for the last minute. Usually you will examine the activities of the entire instance level to determine what is happening in your system. By examining the current activity at an instance level of display, you can see how it is currently behaving and determine if there is an overall problem that affects all sessions or if there is a problem with specific sessions.See “Examining contentions” on page 73 For more information, see Examining contentions.

To examine resource consumption of an entire instance and database

...

  1. Verify that the Precise for SQL Server Interpoint extension is installed. For more information, see the Precise Installation Guidesee Installation and Administration.
  2. In the Instance list, choose the instance you want to analyze. For this example, you are viewing Siebel session data.
  3. In the Association area, view Siebel session data for each session in the selected instance and observe to which SQL Server session it is correlated to.

...

  1. In the Instance list, choose the instance you want to analyze.
  2. On the View controls in the Main area, click Locks and examine the locking contentions.
  3. Check which sessions and programs are holding the locks and locate which objects are involved in contentions.
  4. In the Association area, on the Locks tab, observe the status of the locking session and the type of lock (for example, table lock or page lock). See “Examining Examining locking over time of a database entity” on page 101entity.

Anchor
Analyzinglockscurrentlyheld
Analyzinglockscurrentlyheld
Analyzing locks currently held

...