oracle创建角色并赋予权限

原创
2016/11/14 10:48
阅读数 1.5K
create user skye  /*创建用户名为testwy*/ identified by skye /*密码为wuyong*/ account unlock;

/*授予不限制的表空间 */
grant unlimited tablespace to skye;--授予不限制的表空间  

/**/
grant insert any table to skye;
grant delete any table to skye;
grant update any table to skye;
grant select any table to skye;
grant drop   any table to skye;

grant select any dictionary to skye;

 

展开阅读全文
加载中

作者的其它热门文章

打赏
0
0 收藏
分享
打赏
0 评论
0 收藏
0
分享
返回顶部
顶部