zhaojinhui

步骤一:新建

 

步骤二:填写信息

对应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;

 

分类:

技术点:

相关文章:

  • 2021-11-23
  • 2021-08-25
  • 2021-12-19
  • 2022-12-23
  • 2022-01-30
  • 2021-11-18
  • 2021-04-16
  • 2021-11-25
猜你喜欢
  • 2022-02-22
  • 2021-12-31
  • 2021-09-17
  • 2022-02-20
  • 2021-06-15
  • 2022-12-23
  • 2021-12-09
相关资源
相似解决方案