SQL Server 2000 庫置疑的修複

來源:互聯網
上載者:User

SQL Server 2000建立同名資料庫,停資料庫,刪除檔案,複製檔案進來。 啟動資料庫,此時資料庫置疑,開啟查詢分析器
exec sp_configure 'allow updates',1 RECONFIGURE WITH OVERRIDE /* 開啟修改系統資料表的開關 */
update sysdatabases set status=32768 where name='BecomCQUser' /* 設定資料庫狀態 */
DBCC REBUILD_LOG ('BecomCQUser','D:/ClearQuest/BecomCQUser_Log.LDF') /* 重建LDF檔案 */
update sysdatabases set status=0 where name='BecomCQUser' /* 重設資料庫狀態 */
restore database BecomCQUser WITH RECOVERY /* 恢複資料庫 */
update sysdatabases set status =16 where name = 'BecomCQUser' 
exec sp_configure 'allow updates',0 RECONFIGURE WITH OVERRIDE

如果有登陸使用者在登入裡沒有,而在該資料庫裡有,那麼會既建不了登入,又刪除不了登入使用者,這時候可以改變庫裡對象的所有者,然後刪掉使用者,再建立登入即可
選中資料庫,執行以下語句,把所有對象的所有者改成了dbo,之後就可以刪除登入使用者了
declare tb cursor local for
select 'sp_changeobjectowner ''['+replace(user_name(uid),']',']]')+'].['
+replace(name,']',']]')+']'',''dbo'''
from sysobjects
where xtype in('U','V','P','TR','FN','IF','TF') and status>=0
open tb
declare @s nvarchar(4000)
fetch tb into @s
while @@fetch_status=0
begin
exec(@s)
fetch tb into @s
end
close tb
deallocate tb
go

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.