ファイルグループに列ストアインデックスが含まれている場合、データベース全体をread_only
防止するようdbcc checkdb
にファイルグループを設定しているようです。実行しようとするcheckdb
かcheckfilegroup
(のための任意の読み書きセカンダリとを含め、データベース内のファイルグループ[PRIMARY]
)、以下のエラーが返されます...
Msg 8921, Level 16, State 1, Line 24
Check terminated. A failure was detected while collecting facts.
Possibly tempdb out of space or a system table is inconsistent. Check previous errors.
読み取り専用のファイルグループに列ストアデータを保持するためのサポートされている方法はありますか?または、このシナリオの整合性チェックから除外されますか?
再現
create database check_fg_ro
go
use check_fg_ro
go
exec sp_changedbowner 'sa';
go
alter database check_fg_ro add filegroup check_fg_ro_2;
alter database check_fg_ro
add file (
name='check_fg_ro_2'
,filename='C:\check_fg_ro_2.ndf'
) to filegroup check_fg_ro_2;
go
create table foo (
i int not null primary key
) on check_fg_ro_2;
go
create columnstore index ccix_foo on foo(i);
go
use master
go
alter database check_fg_ro modify filegroup check_fg_ro_2 read_only;
go
dbcc checkdb( check_fg_ro ) with no_infomsgs, all_errormsgs, extended_logical_checks;
/*
Msg 8921, Level 16, State 1, Line 24
Check terminated. A failure was detected while collecting facts.
Possibly tempdb out of space or a system table is inconsistent. Check previous errors.
*/
go
免責事項:technetフォーラムへのクロス投稿