Skip Navigation Links
Home
Articles
SQL Server 2012
SQL Server 2014
SQL Server 2016
FAQ
Practice Test
Tip of the Day : SQL Server Database Design - Internet Movie Database (IMDb)
Error Messages
Home > SQL Server Error Messages > Msg 331 - The target table '<Table Name>' of the OUTPUT INTO clause cannot have any enabled triggers.
SQL Server Error Messages - Msg 331 - The target table '<Table Name>' of the OUTPUT INTO clause cannot have any enabled triggers.

Error Message

Server: Msg 331, Level 16, State 1, Line 1
The target table '<Table Name>' of the OUTPUT INTO
clause cannot have any enabled triggers.

Causes

The OUTPUT clause, introduced in SQL Server 2005, returns information from, or expressions based on, each row affected by an INSERT, UPDATE, DELETE or MERGE statement.

These results can be returned to the processing application for use in such things as confirmation messages, archiving, and other such application requirements. The results can also be inserted into a table or table variable. Additionally, you can capture the results of an OUTPUT clause in a nested INSERT, UPDATE, DELETE, or MERGE statement, and insert those results into a target table or view.

One of the restrictions when using the OUTPUT clause is that if the result of the OUTPUT clause is inserted into a table, the table cannot have any enabled triggers; otherwise this error message will be encountered.

To illustrate how this error is generated, given the following tables structures:

CREATE TABLE [dbo].[StudentGrade] (
    [StudentID]   INT,
    [Course]      VARCHAR(10),
    [Grade]       INT
) 
GO

CREATE TABLE [dbo].[StudentGradeHistory] (
    [StudentID]    INT,
    [Course]       VARCHAR(10),
    [OldGrade]     INT,
    [NewGrade]     INT
) 
GO

CREATE TABLE [dbo].[StudentGradeAlert] (
    [AlertID]        INT NOT NULL PRIMARY KEY IDENTITY(1, 1),
    [StudentID]      INT,
    [Course]         VARCHAR(10),
    [AlertMessage]   VARCHAR(MAX),
    [AlertDate]      DATETIME
) 
GO

CREATE TRIGGER [dbo].[CheckGradeChange] ON [dbo].[StudentGradeHistory]
AFTER INSERT 
AS

INSERT INTO [dbo].[StudentGradeAlert] ( [StudentID], [Course], [AlertMessage], [AlertDate] )
SELECT [StudentID], [Course], 'Grade increased by at least 10 points.', GETDATE()
FROM [inserted]
WHERE [NewGrade] - [OldGrade] >= 10
GO

The grades of students for MATH101 is being increased by 10 points for those students who have a grade of less than 70 as they completed the extra credit assignment given to them. For each student grade increased, the old grade and new grade needs to be inserted to the student grade history table.

In fulfilling this requirement, the following UPDATE statement which includes the OUTPUT INTO clause is executed.

UPDATE [dbo].[StudentGrade]
SET [Grade] = [Grade] + 10
OUTPUT [inserted].[StudentID], [inserted].[Course],
       [deleted].[Grade], [inserted].[Grade]
INTO [dbo].[StudentGradeHistory]
WHERE [Grade] < 70 AND [Course] = 'MATH101'

But since the target table, in this case the [dbo].[StudentGradeHistory] table, has an enabled triggered, in this case the [dbo].[CheckGradeChange] trigger which creates an alert message if the change in the grade is at least 10 points, the following error message is encountered:

Msg 331, Level 16, State 1, Line 1
The target table 'dbo.StudentGradeHistory' of the OUTPUT INTO
clause cannot have any enabled triggers.

Solution / Work Around:

As mentioned earlier, and as the message suggests, the target table of the OUTPUT INTO clause cannot have any enabled triggers. To overcome this restriction, one thing that can be done is to insert the updated student records together with the old and new grades into a temporary table or a table variable first. Then after the UPDATE statement, the updated student grades can now be inserted into the student grade history table.

The following script can be used to replace the UPDATE statement earlier which inserts all updated student records together with their old and new grades after the UPDATE operation.

DECLARE @StudentGradeHistory TABLE (
	[StudentID]			INT,
	[Course]			VARCHAR(10),
	[OldGrade]			INT,
	[NewGrade]			INT
)

UPDATE [dbo].[StudentGrade]
SET [Grade] = [Grade] + 10
OUTPUT [inserted].[StudentID], [inserted].[Course],
       [deleted].[Grade], [inserted].[Grade]
INTO @StudentGradeHistory
WHERE [Grade] < 70 AND [Course] = 'MATH101'

INSERT INTO [dbo].[StudentGradeHistory] ( [StudentID], [Course], [OldGrade], [NewGrade] )
SELECT [StudentID], [Course], [OldGrade], [NewGrade]
FROM @StudentGradeHistory

The first part of the script is the declaration of a table variable that will contain the student ID of the student grades updated together with the old grade and new grade. This table variable is then used as the target table for in the OUTPUT INTO clause of the UPDATE statement.

Lastly, all updated student grades that are now in the table variable can now be inserted to the student grade history table without generating this error.

Related Articles :