PL/SQL创建用户

步骤一:新建

 

步骤二:填写信息

对应SQL代码

-- Create the user 
create user WENT
identified by "longrise"
default tablespace NSEST
temporary tablespace NSEST_TEMP
profile DEFAULT;
-- Grant/Revoke object privileges 
grant read, write on directory SYS.ZWGC to WENT with grant option;
-- Grant/Revoke role privileges 
grant connect to WENT;
grant dba to WENT;
-- Grant/Revoke system privileges 
grant unlimited tablespace to WENT;

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。