您的位置:首页 > 数据库 > Oracle

oracle创建角色并赋予权限

2016-11-14 00:00 183 查看
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;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: