i know, it sounds odd but i want to create a trigger on a sp is it possible, if not why?
Creating trigger on stored procedure
Collapse
X
-
It sounds more like you want logging and or version control. If it's logging you want, the database administrators will have access to the logs, and if not, they can turn logging on. As for version control, you just need to treat stored procedures like you would any other coding project.
If the reason for this is that your stored procedures are being changed by someone that shouldn't be changing them, then that's a security issue. The database administrators need to set up the permissions correctly so that only you are allowed to modify the stored procedure.Comment
Comment