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