Estoy usando Views en mi Procedimiento almacenado (SQL-Server). Para mejorar el rendimiento, he tratado de crear un índice de esa vista.No se puede crear el índice en la vista 'View_Table_Name' porque la vista no está enlazada al esquema
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER VIEW VW_Table_Name
AS
SELECT Col1,Col2,Col3 FROM Table_Name
GO
CREATE UNIQUE CLUSTERED INDEX Index_Name ON [VW_Table_Name](Col1)
GO
Aquí estoy consiguiendo el error como
Msg 1939, nivel 16, estado 1, línea 1 No se puede crear el índice en la vista 'VW_FML' porque la vista no está obligado esquema.
¿Podemos crear el índice para ver en SQL Server?