私はステージングプロセスの一部であるジョブを持っています。引用のためにインデックス作成ジョブが失敗しました
指標の一つは、フィルターのインデックスである:ジョブは次のエラーで失敗し
CREATE NONCLUSTERED INDEX [IDX_IP_ActivePAss] ON [dbo].[IPStg]
(
[SIP] ASC,
[EIP] ASC
)
WHERE ([Status] IN ("Active", "Private"))
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF,
SORT_IN_TEMPDB = OFF,
DROP_EXISTING = OFF,
ONLINE = OFF,
ALLOW_ROW_LOCKS = ON,
ALLOW_PAGE_LOCKS = ON)
ON [PRIMARY]
GO
:
CREATE INDEX failed because the following SET options have incorrect settings: 'QUOTED_IDENTIFIER'. Verify that SET options are correct for use with indexed views and/or indexes on computed columns and/or filtered indexes and/or query notifications and/or XML data type methods and/or spatial index operations. [SQLSTATE 42000] (Error 1934). The step failed.
お知らせください。
その誤字は、一重引用符です。 – Nugeswale
私はあなたの質問に正しく答えたと確信している場合は、答えをマークしてください – Steve
一言引用しても問題が続く – Nugeswale