此问题一般为数据库问题,请使用数据库检测修复工具对数据库进行检测修复,如不行,请将账套备份出来,然后重新覆盖。
在数据库文件覆盖后,执行如下语句(将帐套号改为你的帐套号)
use master
go
sp_configure 'allow updates',1
go
reconfigure with override
go
update sysdatabases set status=-32768 where dbid=DB_ID('Ufdata_001_2007')
go
dbcc rebuild_log('Ufdata_001_2007','d:\ufsmart\admin\zt001\2007\Ufmodel.ldf')
go
sp_dboption 'Ufdata_001_2007','dbo use only','false'
go
sp_configure 'allow updates',0
go
reconfigure with override
go