Cannot create more than one clustered index on %S_MSG '%.*ls'. Drop the existing clustered index '%.*ls' before creating another.

Error Message:
Msg 1902, Level 16, State 3, Line 1
Cannot create more than one clustered index on %S_MSG ‘%.*ls’. Drop the existing clustered index ‘%.*ls’ before creating another.

Severity level:
16.

Description:
This error message appears when you try to create a clustered index on a table, for which already a clustered index exists.

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. Each table can only have one clustered index. You must either drop the existing clustered index or change that index to a nonclustered index, before the statement can be successfully executed.

Versions:
All versions of SQL Server.

Example(s):
CREATE TABLE t
(
 c1 INT PRIMARY KEY
)
GO
CREATE UNIQUE CLUSTERED INDEX ci_t ON t(c1)
GO
DROP TABLE t

Remarks:
In the above example we try to create a clustered index on the table t. Because t already has a clustered index, the error is raised.

]]>

Leave a comment

Your email address will not be published.