免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2534 | 回复: 2
打印 上一主题 下一主题

权限的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-07-23 15:54 |只看该作者 |倒序浏览
各位大大,有没有什么命令一次性的、批量的给某个用户赋予库中所有表、视图等相同的权限呢?如赋予A用户在数据库D中所有表、视图查询的权限。

论坛徽章:
0
2 [报告]
发表于 2007-07-23 16:39 |只看该作者
create procedure up_grant_all
(@objecttypes  varchar(3)
)
as
declare @da_objectname  varchar(30)
declare @da_objecttype  varchar(30)
declare @ls_sql         varchar(255)
/*
**  If we're in a transaction, disallow this since it might make recovery
**  impossible.
*/
if @@trancount > 0
begin
    /* 17260, "Can't run %1! from within a transaction." */
    raiserror 17260, "up_grant_all"
    return (1)
end
if upper(@objecttypes )='ALL'
begin
    declare cur_result2 cursor for   
    select  name  , type
    from  sysobjects  
end
else
begin
    declare cur_result2 cursor for   
    select  name  ,  type
    from  sysobjects  
    where sysobjects.type = upper(@objecttypes)
end
open  cur_result2
fetch cur_result2 into  @da_objectname ,@da_objecttype
while (@@sqlstatus = 0)
begin
    if @da_objecttype ='U' or @da_objecttype ='V'
        begin
             exec ( 'grant all on ' + @da_objectname  + ' to public' )
  
        end
  
    else if  @da_objecttype ='P'
            begin
         
                 exec ( 'grant execute on '  +@da_objectname +' to public' )
         
           end
   
fetch cur_result2 into  @da_objectname ,@da_objecttype
end
close cur_result2   
deallocate cursor cur_result2   

给你一个存储过程看一下

论坛徽章:
0
3 [报告]
发表于 2007-07-23 16:56 |只看该作者
谢谢!拜读中。。。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP