当前位置:首页 > 数据库 > Oracle

Oracle用户权限

?? PL/SQL权限

1、查询用户的权限
Select * From sys.dba_sys_privs a Where A.grantee= ‘username‘;

2、在当前用户下查询当前用户的权限
SELECT * FROM session_privs;

3、给用户赋权限
Grant select on tablename to username;

4、删除用户的权限
Revoke
create table ,select any table ,update any table ,insert any table ,delete
any table ,sysdab
From user_name;

原文:http://blog.csdn.net/gh320/article/details/18656145


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!