ORALCE 用户创建与授权

创建用户与用户授权:

--创建用户
create user pmp identified by pmp;
--分配权限
grant create session,create table,create view ,create any index to pmp;
grant unlimited tablespace to pmp;
grant connect,resource to pmp;

原文地址:https://www.cnblogs.com/w2011/p/3014378.html