Is there a way to trigger an event when other user(s) in network either update or insert a record into SQL table?
I could read the table from the database every few seconds then compare the data to see if there are differences, but that would seem resource intensive.
Perhaps, I should have mentioned I'm using C#/WinForm and SQL Database, although I've tagged it.
I've already looked at SQL Trigger, but doesn't it also require reading the trigger table, which can be resource intensive? I was looking more of small program/service running in background that when users makes changes to the database, trigger it. Foreground app can then check the service to see if change was made. Am I thinking overly complicated?