將Sql Server對象的當前擁有者更改成目標擁有者

來源:互聯網
上載者:User

資料庫操作當中,當資料庫物件列表不只有一個普通的元素——objectname時,你將要使用objectowner.objectname來引用對象,但如果需要更改當前資料庫中對象的所有者可以使用系統預存程序 sp_changeobjectowner (點擊這裡更詳細)

sp_changeobjectowner
更改當前資料庫中對象的所有者。
文法: sp_changeobjectowner [ @objname = ] 'object' , [, @newowner = ] 'owner'. 參數. [@objname =] 'object'.

但往往由於資料庫物件過多,希望批處理更改當前資料庫中對象的所有者,那麼你可以嘗試使用Net Fetch的 nf_ChangeObjectOwner 預存程序來完成批處理。具體用法如下:

首先使用以下代碼建立預存程序——

nf_ChangeObjectOwner
將Sql Server對象的當前擁有者更改成目標擁有者
文法:nf_ChangeObjectOwner [, @current_Owner = ] 'owner',[,@target_Owner =] 'owner',[ ,@modify_Type=] type 複製代碼 代碼如下:if exists (select * from sysobjects where id = object_id(N'[nf_ChangeObjectOwner]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure nf_ChangeObjectOwner
GO

Create PROCEDURE nf_ChangeObjectOwner
@current_Owner nvarchar(255),
@target_Owner nvarchar(255),
@modify_Type int
/***********************************************************************************************

nf_ChangeObjectOwner

實現功能: 將Sql Server對象的當前擁有者更改成目標擁有者
**** 使用本代碼前請備份資料庫!
**** 所帶來的安全問題,與俺家的驢子無關!
**** 歡迎斧頭劈我,劈死偶有獎!
調用方法: Exec nf_ChangeObjectOwner @current_Owner,@target_Owner,@modify_Type

輸入參數: @current_Owner nvarchar(255) --對象的當前擁有者
@target_Owner nvarchar(255) --對象的目標擁有者
@modify_Type int --0為預設,更改表的擁有者;1為視圖和預存程序
輸出參數: RETURN值 = -1 --操作對象為0,操作對象不存在
= -2 --操作失敗,可能對象被鎖定
= 0(預設值) --操作成功,列印更改對象數目@object_Num
@object_Num --SQL 列印值,返回更改成功的對象數目

@Write by Net Fetch. @At 2005/09/12
@Email: cnNetFetch*Gmail.Com blog.ad0.cn

************************************************************************************************/
AS
DECLARE @str_Tbl_Name nvarchar(255),@object_Num int,@current_Owner_uid smallint
Set @object_Num = 0
DECLARE @return_status int
Set @return_status = -1
Set @current_Owner_uid = (Select uid From sysusers Where [Name] = @current_Owner)
If Not (Len(@current_Owner_uid)>0)
RETURN -1
If (@modify_Type = 1)
DECLARE ChangeObjectOwner_Cursor CURSOR FOR Select [Name] From sysobjects Where (type='U' or type='V' or type='P') and userstat=0 and [Name]<>'nf_ChangeObjectOwner' and status>-1 and uid = @current_Owner_uid
Else
DECLARE ChangeObjectOwner_Cursor CURSOR FOR Select [Name] From sysobjects Where (type='U' or type='V' or type='P') and userstat<>0 and [Name]<>'dtproperties' and uid = @current_Owner_uid
OPEN ChangeObjectOwner_Cursor
BEGIN TRANSACTION Change_ObjectOwner
FETCH NEXT FROM ChangeObjectOwner_Cursor INTO @str_Tbl_Name
WHILE (@@FETCH_STATUS = 0)
BEGIN
Set @str_Tbl_Name = @current_Owner + '.' + @str_Tbl_Name
Print @str_Tbl_Name
EXEC @return_status = sp_changeobjectowner @str_Tbl_Name, @target_Owner
IF (@return_status <> 0)
BEGIN
ROLLBACK TRANSACTION Change_ObjectOwner
RETURN -2
END
Set @object_Num = @object_Num + 1
FETCH NEXT FROM ChangeObjectOwner_Cursor INTO @str_Tbl_Name
END
Print @object_Num
COMMIT TRANSACTION Change_ObjectOwner
CLOSE ChangeObjectOwner_Cursor
DEALLOCATE ChangeObjectOwner_Cursor

Go

Usage(使用方法): Exec nf_ChangeObjectOwner 'dbo','你的使用者名稱',0
——將所有使用者表的擁有者更改成'你的使用者名稱'
Usage(使用方法): Exec nf_ChangeObjectOwner 'dbo','你的使用者名稱',1
——將除了使用者表之外資料庫物件(視圖、預存程序)的擁有者更改成'你的使用者名稱'

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.