Cannot use CHECKSUM(*) in a computed column definition.

Error Message:
Msg 1789, Level 16, State 1, Line 1
Cannot use CHECKSUM(*) in a computed column definition.

Severity level:
16.

Description:
This error message appears when you try to the CHECKSUM(*) function in the definition of a computed column.

Consequences:
The T-SQL statement can be parsed, but causes the error at runtime.

Resolution:
Error of the Severity Level 16 are generated by the user and can be fixed by the SQL Server user. The statement cannot be executed this way. You cannot use CHECKSUM(*) in a computed column.

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,
 c2 AS CHECKSUM(*)
);
GO
INSERT INTO #t VALUES(1);

Remarks:
In the above example we try to use CHECKSUM(*) in the definition of a computed column. This raises the error.

]]>

Leave a comment

Your email address will not be published.