有问题文章留言 看内容决定收费与免费
另外接收数据库质疑 勒索病毒数据恢复等项目。

日结报错:后台处理数据错误

【问题描述】

日结会报错以下信息

【问题答案】

请在数据库中执行语句:
use hbposv7_branch –数据库名请根据修复的数据库进行更换。
go
declare @tablename varchar(100)
declare test_cur cursor for
select object_name(id) from sysobjects
where type =’U’
open test_cur
fetch test_cur into @tablename
while @@fetch_status=0
begin
DBCC DBREINDEX(@tablename)
fetch test_cur into @tablename
end
close test_cur
deallocate test_cur
go



赞(0)
未经允许不得转载:思迅软件知识库 » 日结报错:后台处理数据错误

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址