- 论坛徽章:
- 0
|
00:00000:00001:2005/08/11 08:00:20.17 server Error: 7411, Severity: 18, State: 1
00:00000:00001:2005/08/11 08:00:20.17 server The 'Systhresholds' table in database 'DZGeneralDB' is not in its correct sort order. Its clustered index needs to be rebuilt using 'sp_fixindex'. Only the last chance threshold has been activated.
00:00000:00001:2005/08/11 08:00:20.17 server Error: 7411, Severity: 18, State: 1
00:00000:00001:2005/08/11 08:00:20.17 server The 'Systhresholds' table in database 'DZGeneralDB' is not in its correct sort order. Its clustered index needs to be rebuilt using 'sp_fixindex'. Only the last chance threshold has been activated.
sybase 12.5.2 windows2000AV 环境.
已经试过的解决办法:
dbcc indexalloc(Systhresholds,1,full,fix)
sp_fixindex DZGeneralDB,systhresholds,1
都没有修复成功.这个表是系统表.
将尝试的解决办法:
1.sp_configure 'allow update',1
之后, 删除再重建这个系统表的索引.
2.sp_configure 'allow update',1
go
update dbname..systhresholds set free_space=<一个非0值>; where status=1
go
3.BCP OUT,DBCC清空数据,然后再导入这个表.
也请,各位老大,讨论一下,出个解决方案. 再一起感谢大家. |
|