Results 1 to 4 of 4

Thread: Tracking Database hits or calls?

  1. #1
    Join Date
    Aug 2004
    Posts
    188

    Tracking Database hits or calls?

    What is the best way to find out how many database calls or hits you are getting on a daily basis?

    Perfmon? System monitor? Or is there a DBCC command that may tell you? I'm trying to find out how many transactions or calls we get on a daily basis.

    Thanks.

  2. #2
    Join Date
    Sep 2002
    Location
    Fantasy
    Posts
    4,254
    select * from master..sysperfinfo where counter_name like '%Transactions/sec%'

  3. #3
    Join Date
    Aug 2004
    Posts
    188
    Thank you! Thats what i needed.

    thanks again.

  4. #4
    Join Date
    Sep 2002
    Posts
    5,938
    You may know that the number is same as in perfmon and it's not daily based.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •