Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
donpolix
Yak Posting Veteran
97 Posts |
Posted - 2005-09-14 : 15:54:46
|
| Why is it that when I monitor the process of a program I made in VB that connects to a database and selects a few rows in a table, I can see the "CPU" column value in sysprocesses is accumulating/adding up even if I am closing the recordset each run to the that sub procedure?Donn Policarpio |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2005-09-14 : 16:02:02
|
| It is a cumulative counter. It starts at 0 and counts up until the user has logged off.Tara |
 |
|
|
donpolix
Yak Posting Veteran
97 Posts |
Posted - 2005-09-14 : 18:25:57
|
| Oh. Now I know. :)Thanks Tara!Donn Policarpio |
 |
|
|
|
|
|