I have a simple application that is showing the users a status of 10 different database values. The values in the database is updating by a 3part software and the update rate is down to every 1 seconds for some of the values and other 1-2 hours.
I need a way of getting a event call back from the SQL when there is an INSERT of “Name X” in the table.
To day my app is doing a select query to look for change every 1seconds. But I do not think this is good practice. If many users is using this app. It will be a big load on the SQL server I think.
What will be the best solution to look for updates like this?