Created
September 2, 2015 08:33
-
-
Save ststeiger/b418e4d05b2f22ebd7e0 to your computer and use it in GitHub Desktop.
Trigger to disable deletes ;)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TRIGGER dbo.TG_INSTEAD_DEL_T_Benutzer_Benutzergruppen | |
| ON dbo.T_Benutzer_Benutzergruppen | |
| INSTEAD OF DELETE | |
| AS | |
| BEGIN | |
| RETURN | |
| END | |
| GO | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment