錯誤9003:LSN(827:1223:1)無效。該LSN是傳遞給數(shù)據(jù)庫'UFDATA_103_2012'中的日志掃描操作的。如下圖:
103帳套只有以前月份備份及數(shù)據(jù)庫備份、系統(tǒng)庫備份,但是附加2012年度數(shù)據(jù)就報上面的錯誤。
先恢復103帳套2012年以前月份數(shù)據(jù)備份,然后用備份的數(shù)據(jù)庫文件覆蓋掉103帳套的實體數(shù)據(jù)庫文件。
但是登陸103帳套2012年還是進不去,提示登陸失敗,進去企業(yè)管理器發(fā)現(xiàn)2012年數(shù)據(jù)庫置疑??梢詧?zhí)行下面語句修復置疑數(shù)據(jù)庫:
use master go sp_configure 'allow
updates',1 reconfigure with
override go update sysdatabases set
status =32768 where
name='ufdata_103_2012' go sp_dboption
'ufdata_103_2012', 'single user',
'true' go dbcc
checkdb('ufdata_103_2012') go update
sysdatabases set status =28 where
name='ufdata_103_2012' go sp_configure
'allow updates', 0 reconfigure with
override go sp_dboption
'ufdata_103_2012', 'single user', 'false' go
|