PERSISTED NOT NULL
の計算列を持つクラスタ化インデックスにFILLFACTOR
を設定できないのはなぜですか?SQL Serverのクラスタ化インデックスにFILLFACTORを指定できません(ANSI_PADDINGエラー)
クエリFILLFACTOR
設定します
ALTER INDEX [PK_MyIndex] ON [MyTable] REBUILD PARTITION=ALL WITH (FILLFACTOR = 90)
エラー:
ALTER INDEX failed because the following SET options have incorrect settings: 'ANSI_PADDING'. 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.
それはこの作業を取得することは可能ですか?
ありがとうございました!私はテーブルのようにANSI_PADDINGを設定しなければならないと私は思いました。 –
あなたは大歓迎です! – Alex