यह करने के लिए एक filegroup की स्थापना प्रकट होता है read_only
रोकता dbcc checkdb
पूरे डेटाबेस के लिए करता है, तो filegroup एक columnstore सूचकांक में शामिल है। जब चलाने का प्रयास checkdb
या checkfilegroup
( के लिए किसी भी पढ़ने-लिखने की द्वितीयक और सहित डेटाबेस, में filegroup[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
अस्वीकरण: तकनीकी मंचों के लिए क्रॉस-पोस्ट