Link to home
Start Free TrialLog in
Avatar of pgirardier
pgirardier

asked on

How to create SQL SERVER trigger that activates a service ?

Hi

How to create SQL SERVER  trigger that activates a  windows service (created with C #) when editing a table of the database ?
ASKER CERTIFIED SOLUTION
Avatar of greatsubash
greatsubash
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pgirardier
pgirardier

ASKER

You must provide a reason for closing the question when assigning a grade of "C"
BEGIN
      SET NOCOUNT ON;
      EXEC xp_cmdshell 'net start XXXXXr';

END