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;

oracle建用户

上一篇:比较经典的SQL行转列+分组集联


下一篇:Oracle嵌套表存储格式浅析