![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
General Tech |
MapInfo / GIS |
Oracle / Database |
Misc / Useless |
Counter | Description |
SqlClient: Current # of pooled and nonpooled connections | The current number of connections, pooled or not. |
SqlClient: Current # pooled connections | The current number of connections in all pools associated with the process. |
SqlClient: Current # connection pools | The current number of pools associated with the process. |
SqlClient: Peak # pooled connections | The highest number of connections in all pools since the process started. Note that this counter is available only when associated with a specific process instance. The _global_ instance always returns 0. |
SqlClient: Total # failed connects | The total number of connection-open attempts that have failed for any reason. |
Keyword | Default | Function |
Connection Lifetime | 0 | How long (in seconds) a connection remains open after an application returns it to the pool: 0 is the "maximum" timeout value. This maximum value means that the connection isn't released as long as the process that created the pool is alive. Only valid in clustered systems |
Connection Reset | true | In SQL Server 2000, this keyword determines whether the connection is reset when being drawn out of the pool. Setting this value to false avoids an additional round-trip to the server, but the data provider won't reset the connection state |
Enlist | true | When this keyword's value is set to true, the connection pool automatically enlists the connection in the creation thread's current transaction context. |
Max Pool Size | 100 | This value defines the maximum number of connections allowed in the pool. |
Min Pool Size | 0 | This value defines the minimum number of connections allowed in the pool. |
Pooling | true | When this value is set to true, it enables connection pooling for this connection. When the value is set to false, connection pooling is disabled for this connection. |
Recordset created with Server.CreateObject | Recordset created with CreateObject | Command created with Server.CreateObject | Command created with CreateObject | |
Explicit connection created with Server.CreateObject | 1.Yes 2.Conn.Close |
1.Yes 2.Conn.Close |
1.Yes 2.Conn.Close |
1.Yes 2.Conn.Close |
Explicit connection created with CreateObject | 1.Yes 2.Conn.Close |
1.Yes 2.Conn.Close |
1.Yes 2.Conn.Close |
1.Yes 2.Conn.Close |
Implicit connection | 1.No N/A |
1.Yes Set Recordset=Nothing |
1.No N/A |
1.No N/A |