Home Forums SQL Server 2005 Development monitor table and invoke stored procedure if any inserts happens in that table using notification service RE: monitor table and invoke stored procedure if any inserts happens in that table using notification service

  • The best alternative you have, you've been told you can't use. This is a perfect place to use SQL Server Service Broker. A trigger sends a message to a queue to start processing indicating what record (or records) need to be processed. This is a scalable solution, and you can control how many instances of the stored proc are actually being run at any given time.