-- ============================================= -- Create trigger basic template(After trigger) -- ============================================= if exists (select Name from sysobjects where Name = N'' and TYPE = N'TR') DROP TRIGGER GO /****************************************************************************** purpose : author : created : history : - - creation of the trigger ******************************************************************************/ CREATE TRIGGER ON FOR DELETE, INSERT, UPDATE AS BEGIN RAISERROR (50009, 16, 10) END GO