oracle建用户

create user ng_zj identified by ng_zj
default tablespace tbs_test
temporary tablespace tbs_test_tmp;

grant connect to ng_zj;
grant resource to ng_zj;
grant create table to ng_zj;
grant create sequence to ng_zj;
grant create session to ng_zj;
grant create synonym to ng_zj;
grant create view to ng_zj;
grant select any table to ng_zj;
grant create procedure to ng_zj;
grant debug connect session to ng_zj;

原文地址:https://www.cnblogs.com/zuo-zijing/p/3964878.html