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 |
|
Daniel_Buchholz
Starting Member
28 Posts |
Posted - 2002-07-01 : 08:09:31
|
| Good Morning!Anyone know what all those cntr_type values in the master sysperfinfo table mean? I want to do some custom things with performance data and I need to know *what* is counted in the fields. Is it per second / absolute / what unit...I guess that 65536 means an absolute value. But what about the others?Thanks!Daniel |
|
|
Kevin Snow
Posting Yak Master
149 Posts |
Posted - 2002-07-03 : 16:54:42
|
| cntr_type int Type of counter as defined by the Windows NT 4.0 performance architecture. You want to search for WMI Performance Counters (Watch out for .NET performace architecutre for VB and C#. It's not the same thing)For an explanation of types and links to additional info, see:http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wmisdk/wmi/wmi_performance_counter_types.asp |
 |
|
|
Daniel_Buchholz
Starting Member
28 Posts |
Posted - 2002-07-04 : 03:08:24
|
That is what I was looking for. Thanks Kevin! |
 |
|
|
|
|
|