About this question
I want this trigger to be fired after an insert is made with the text married on the marital_status column, this is what I have so far
ALTER TRIGGER [dbo].[marriage] ON [dbo].[applicant_personal_info] AFTER INSERT AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; IF (SELECT [marital_status] FROM inserted) = 'married' BEGIN INSERT INTO [dbo].[applicant_marriage_info]([dom]) VALUES('abc') END END Don’t know why SQL Server AFTER INSERT trigger fail? And what if after insert trigger fails?