巨难问题!!! SQL SERVER 6.5 错误,More than 32 entries required to build the logical-virtual translation table for database 'boil'
朋友公司的一个SQL SERVER 6.5 发生了问题,一个数据库被suspect了,我执行了下列语句,准备到BYPASS MODE 下面将数据拷出来了事
Sp_configure "allow updates", 1
Reconfigure with override
GO
Update sysdatabases set status = -32768 where name = 'boil'
Sp_configure "allow updates", 0
Reconfigure with override
GO
结果,执行了Update sysdatabases set status = -32768 where name = 'boil'
以后(boil就是那个suspect的数据库),执行 use boil,却出现如下错误
Msg 909, Level 21, State 1
More than 32 entries required to build the logical-virtual translation table for database 'boil'. The database is too fragmented.
,好象说是数据库太散了,怎么都不能选择boil数据库,于是重启,打开企业管理器后却发现连服务器都点不开了,一点击服务器的节点就出现上面那个提示,真是一点办法都没有了,不知道哪位大侠碰到过这种情况,请务必出手!!!分数有的是......
(环境:SQL SERVER 6.5 +WIN NT 4.0)