Can only use IF UPDATE within a CREATE TRIGGER statement.

Error Message:
Msg 140, Level 15, State 1, Line 3
Can only use IF UPDATE within a CREATE TRIGGER statement.

Severity level:
15.

Description:
This error message appears when you try to specify an IF UPDATE statement outside the scope of a trigger.

Consequences:
The SQL statement cannot be parsed and further execution is stopped.

Resolution:
Error of the Severity level 15 are generated by the user and can be fixed by the SQL Server user. You can use an IF UPDATE statement only within the scope of a trigger.

Versions:
All versions of SQL Server.

Example(s):
USE tempdb;
GO
IF OBJECT_ID(‘tempdb..#t’) > 0
 DROP TABLE #t
GO
CREATE TABLE #t
(
 c1 INT
);
GO
INSERT INTO #t SELECT 1;
UPDATE #t SET c1 = 2;
IF UPDATE(c1)
BEGIN
 SELECT ‘AHA’
END

Remarks:
If the above example we try to issue an IF UPDATE statement outside the scope of a trigger. this raises the error.

]]>

Leave a comment

Your email address will not be published.