A table can only have one timestamp column. Because table '%.*ls' already has one, the column '%.*ls' cannot be added

Error Message:
Msg 2738, Level 16, State 2, Line 1
A table can only have one timestamp column. Because table ‘%.*ls’ already has one, the column ‘%.*ls’ cannot be added.

Severity level:
16.

Description:
This error message appears when you try to create a table with more than one Timestamp columns.

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. Each table in SQL Server can contain just one Timestamp column.

Versions:
All versions of SQL Server.

Example(s):
CREATE TABLE t
(
 c1 INT,
 t1 TIMESTAMP
)
GO
ALTER TABLE t
 ADD t2 TIMESTAMP

Remarks:
In the above example, we try to add a second timestamp column to the table t. Because table t already contains such a timestamp column, the error is raised.

]]>

Leave a comment

Your email address will not be published.