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;