The topic describes the DF196 T-SQL code analysis rule.
DEPRECATED
The DROP INDEX with two-part index name is used.
It is not recommended to use this syntax as it is deprecated and will be removed in a future version of Microsoft SQL Server. Instead, use DROP INDEX < name > ON < table_name >.
DROP INDEX dbo.DemoTable.MyIndex;
GO
DROP INDEX MyIndex ON dbo.DemoTable;
GO