JohnDTampaBay
Programmer
I need to put a trigger on the SysUsers table to email me when users are added or modified. I found the code I thought I needed:
That should allow me to apply the trigger, but I still get a "permission denied" error. What gives? What piece am I missing to make this work? Any ideas? --Angel
-----------------------------------
SELECT * FROM users WHERE clue > 0
(0 row(s) affected)
Code:
sp_configure 'allow updates', 1
Reconfigure With Override
GO
-----------------------------------
SELECT * FROM users WHERE clue > 0
(0 row(s) affected)