DROP XML INDEX does not support any options.

Error Message:
Msg 6324, Level 15, State 1, Line 4
DROP XML INDEX does not support any options.

Severity level:
15.

Description:
This error message appears when you try to specify any option for dropping an XML index.

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

Resolution:
Error of the Severity level 15 are generated by the user and can be fixed by the SQL Server user. The statement cannot be run this way. Remove the options from the DROP INDEX statement.

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

Example(s):
IF OBJECT_ID (‘dbo.t’) IS NOT NULL
    DROP TABLE dbo.t;
GO

CREATE TABLE dbo.t
(
    c1 int PRIMARY KEY,
    xml1 XML
);
GO

CREATE PRIMARY XML INDEX IX_XML_t ON dbo.t(xml1);

DROP INDEX IX_XML_t ON dbo.t WITH (ONLINE = ON);

Remarks:
In the above example we try to drop an XML index while specifying the ONLINE = ON option. This raises the error.

]]>

Leave a comment

Your email address will not be published.