Could not create %S_MSG '%.*ls' on table '%.*ls'. Only XML Index can be created on XML column '%.*ls'.

Error Message:
Msg 1977, Level 16, State 1, Line 1
Could not create %S_MSG ‘%.*ls’ on table ‘%.*ls’. Only XML Index can be created on XML column ‘%.*ls’.

Severity level:
16.

Description:
This error message appears when you try to create a relational index for a column of the XML data type.

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 can only create XML-indices on XML columns.

Versions:
This error message was introduced with SQL Server 2005.

Example(s):
USE tempdb;
GO
IF OBJECT_ID(‘tempdb..#t’) > 0
 DROP TABLE #t
GO
CREATE TABLE #t
(
 id INT
 CONSTRAINT CIX_t_id PRIMARY KEY,
 c1 XML
)
GO
CREATE PRIMARY XML INDEX IX_XML_t_c1
    ON #t(c1);
ALTER INDEX CIX_t_id ON #t
DISABLE;
GO
CREATE UNIQUE CLUSTERED INDEX CIX_t_id
    ON #t(c1)
  WITH (
   DROP_EXISTING = ON,
   ONLINE = ON);

Remarks:
In the above example we try to create a relational index for an XML column. This raises the error.

]]>

Leave a comment

Your email address will not be published.