Hi,
I couldn't understand properly. My view code is as shown below:
Code:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER VIEW [dbo].[B2]
AS
"SQL QUERY"
GO
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO
Shall I only change "ALTER VIEW [dbo].[B2]" section with "ALTER VIEW [dbo].[B2] with schemabinding"??
Many thanks
telmessos