------解决方案-------------------- 帮顶..
------解决方案-------------------- 直接找到.mdf,.ldf文件附加就可以了
------解决方案-------------------- up
------解决方案-------------------- 不懂版本问题,帮顶:)
------解决方案-------------------- 帮不上忙 MARK
------解决方案-------------------- 关注
------解决方案--------------------
SQL code
-- 解决方法:
-- 假设数据库名为:Test
-- 先创建一个同样的数据库Test
-- 停掉server服务,用旧的数据文件覆盖新创建的文件(只要mdf就可以)。
-- 启动server服务
-- 运行以下命令
sp_configure 'allow',1
go
reconfigure with override
go
update sysdatabases set status=32768 where name='Test'
go
dbcc rebuild_log('Test','D:\database\Test_Log.ldf')
go
update sysdatabases set status=0 where name='Test'
go
sp_configure 'allow',0
go
reconfigure with override
go
dbcc checkdb('Test')
go
--若发现有错误,还要进一步找出出错的地方,可以先检查
-- DBCC CHECKTABLE (sysobjects)
-- DBCC CHECKTABLE (sysindexes)
-- DBCC CHECKTABLE (syscolumns )
-- DBCC CHECKTABLE (systypes)
------解决方案-------------------- 看提示信息,应该是没有将SQL Server 2000的数据库强制升级到SQL Server 2005。