Sembra impostare un filegroup per read_only
impedire dbcc checkdb
l'intero database se il filegroup contiene un indice columnstore. Quando si tenta di eseguire checkdb
o checkfilegroup
( per qualsiasi filegroup nel database, inclusi i secondari di lettura e scrittura e[PRIMARY]
), viene restituito l'errore seguente ...
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.
Esiste un metodo supportato per avere dati columnstore in un filegroup di sola lettura? O sono escluso dai controlli di integrità in questo scenario?
Repro
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
Dichiarazione di non responsabilità: invio incrociato ai forum technet