【SQL】数据库变为\SUSPECT\状态的解决方法
生活随笔
收集整理的這篇文章主要介紹了
【SQL】数据库变为\SUSPECT\状态的解决方法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
sybase數據庫被標記為"SUSPECT",出現的現象為:
Database 'xx'cannot be opened - it has been marked SUSPECT by recover Explanation
$XX為你的數據庫名稱
這是一個比較嚴重的錯誤,總結處理方式如下:(別分離,分離后無法附件)啟動isql,用sa登錄到SQL SERVER,執行以下命令:
1>sp_configure "allow updates",1
2>go
1>reconfigure with override
2>go
1>update master..sysdatabases
set status=-32768
where name="databasename" $databasename 為你的數據庫的名字
2>go
1>shutdown with nowait
2>go
重新啟動SQL Server,再用sa帳號登錄到SQL Server
1>update master..sysdatabases
set status=0
where name="databasename" $databasename 為你的數據庫的名字
2>go
1>sp_configure "allow updates",1
2>go
1>reconfigure with override
2>go
Database 'xx'cannot be opened - it has been marked SUSPECT by recover Explanation
$XX為你的數據庫名稱
這是一個比較嚴重的錯誤,總結處理方式如下:(別分離,分離后無法附件)啟動isql,用sa登錄到SQL SERVER,執行以下命令:
1>sp_configure "allow updates",1
2>go
1>reconfigure with override
2>go
1>update master..sysdatabases
set status=-32768
where name="databasename" $databasename 為你的數據庫的名字
2>go
1>shutdown with nowait
2>go
重新啟動SQL Server,再用sa帳號登錄到SQL Server
1>update master..sysdatabases
set status=0
where name="databasename" $databasename 為你的數據庫的名字
2>go
1>sp_configure "allow updates",1
2>go
1>reconfigure with override
2>go
總結
以上是生活随笔為你收集整理的【SQL】数据库变为\SUSPECT\状态的解决方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 名字的来由
- 下一篇: springboot跨模块调用