此版本的SQL Server不支持不推荐使用的功能'DROP INDEX with two-part name'

时间:2015-04-01 05:17:19

标签: sql-server azure azure-sql-database

我使用Query从SQL Azure中的表中删除Indexer

  Drop index [dbo].[Visulaization_UnitUserMapping].IX_Visulaization_UnitUserMapping_UnitUserId;

但是我收到错误:此版本的SQL Server不支持过时的功能'DROP INDEX with two-part name'。

有没有其他方法可以在SQL Azure中完成此任务

1 个答案:

答案 0 :(得分:3)

使用以下语法删除索引:

DROP INDEX IX_Visulaization_UnitUserMapping_UnitUserId 
   ON [dbo].[Visulaization_UnitUserMapping]

DROP INDEX IndexName
   ON SchemaName.TableName

参考:DROP INDEX