首 页 ASP ASP.NET PHP JSP Ajax DIV+CSS JavaScript XML C#
MySQL MSSQL Access Oracle Linux Server 电脑技巧 网络安全 建站经验 其它

更改SQL Server表所有者

整理日期:2007年08月16日 【字体:

--执行这个语句,就可以把当前库的所有表的所有者改为dbo
exec  sp_msforeachtable  'sp_changeobjectowner  ''?'',  ''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

另:

--功能说明:成批更改数据库所有者的对象
--作者:不详
--用法:exec ChangeObjectOwner 'nmkspro','dbo'
--即可将所有nmkspro所有者的对象改为dbo所有
--运行成功后将提示:"注意: 更改对象名的任一部分都可能破坏脚本和存储过程。"
CREATE PROCEDURE dbo.ChangeObjectOwner
 @OldOwner as NVARCHAR(128),--参数原所有者

伊图教程网[www.etoow.com]
http://www.etoow.com/html/2007-08/1187272672.html
 @NewOwner as NVARCHAR(128)--参数新所有者
Tags:
更改SQL Server表所有者
'http://www.etoow.com/html/2007-08/1187272672.html
1
 
信息搜索
  
联系我们关于本站广告服务设为首页 收藏本站友情链接网站地图
Copyright © Etoow.com Inc. All Rights Reserved