码迷,mamicode.com
首页 > 其他好文 > 详细

GRANT 授权

时间:2014-11-17 19:34:18      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:grant   plsql   授权   

sys(管理员)身份登录,创建用户名zsta_new

create user zsta_new
  identified by 密码
  default tablespace ZSTA_DATA_TBS
  temporary tablespace TEMP
  profile DEFAULT;


zsta_new用户授权(允许创建存储过程等):
grant connect to zsta_new;
grant resource to zsta_new;
grant create any procedure to zsta_new;
grant create any view to zsta_new;
grant unlimited tablespace to zsta_new;
grant create database link to zsta_new;
grant debug any procedure, debug connect session to zsta_new;


假设zsta_new用户创建了一个存储过程up_xx_gzmx ,并允许smxxpt用户调用

那么以zsta_new用户登录,执行以下语句:

grant execute on up_xx_gzmx to smxxpt


参考:

众所周知,grant是给别的用户赋权限。他不只能够给表,视图赋权限,而且对存储过程,方法,以及包都可以,具体语法参考如下:

    1.grant给表赋权限: 

    grant  select/update on  table to user; 

    grant  权限 on 表  to 用户。 

    2.grant 给存储过程赋权限: 

    grant execute on package/function/procedure to user; 

    grant execute on 过程、包、方法 to user

GRANT 授权

标签:grant   plsql   授权   

原文地址:http://blog.csdn.net/gateway6143/article/details/41212823

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!