Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 not a hard question

Author  Topic 

AskSQLTeam
Ask SQLTeam Question

0 Posts

Posted - 2006-03-06 : 09:18:58
Hina writes "How to pass events to a service from an insert trigger in SQL server 2000"

TG
Master Smack Fu Yak Hacker

6065 Posts

Posted - 2006-03-06 : 09:24:55
A preferred strategy is to use a trigger to write rows to a "Service Queue" table then write the service to monitor and process off of rows in the queue table. You want to compartmentalize the 2 processes to minimize impact to the source table transactions as well as minimize impact of network or service problems.

Be One with the Optimizer
TG
Go to Top of Page
   

- Advertisement -