错误: 0,严重度: 19,状态: 0
SqlDumpExceptionHandler: 进程 51 发生了严重的异常 c0000005 EXCEPTION_ACCESS_VIOLATION。SQL Server 将终止该进程。
错误: 0,严重度: 19,状态: 0
language_exec: 进程 51 访问违规。SQL Server 将终止该进程。
这是事件查看器中的东西,急用!

解决方案 »

  1.   

    --仅供参考
    --先重启一下试试,不行的话。
    --执行之前先做好数据库文件的备份或保存。*********************
    -- 解决方法: 
    -- 假设数据库名为: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) 
      

  2.   

    且慢,先看看你的SQL2000打SP4补丁了吗?打完补丁,再试试。
      

  3.   

    打补丁,重装sql2000,再打补丁还不行,这可能是什么原因?
    我系统问题?
      

  4.   

    http://topic.csdn.net/t/20060409/11/4673444.html
    http://hi.bccn.net/space-215050-do-blog-id-13816.html