oracle建用户

时间:2020-12-17 22:32:06

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;