J
Joe C.
hello all, thanks for reading.
i am trying to find a better way to keep track of changes in a ms sql
database table.
we have a ticketing system in the office, and a small app was written
to display a count of all outstanding tickets.
this is achieved by sending a "select count(rowName) from tableName"
query to the database every three seconds via the Timer control in
vb.net.
there's 7 people using this application, which means there's 7
database queries every second.
having conferred with our IT people, this load is still a manageable
one. however, once the application is widely distributed, the sql
server will definitely be stressed.
so, the question is, is there a better way to monitor the state of a
database table (getting a count of rows) that doesn't involve sending
a query on a timed increment?
any help would be greatly appreciated.
-Joe
i am trying to find a better way to keep track of changes in a ms sql
database table.
we have a ticketing system in the office, and a small app was written
to display a count of all outstanding tickets.
this is achieved by sending a "select count(rowName) from tableName"
query to the database every three seconds via the Timer control in
vb.net.
there's 7 people using this application, which means there's 7
database queries every second.
having conferred with our IT people, this load is still a manageable
one. however, once the application is widely distributed, the sql
server will definitely be stressed.
so, the question is, is there a better way to monitor the state of a
database table (getting a count of rows) that doesn't involve sending
a query on a timed increment?
any help would be greatly appreciated.
-Joe