1、创建表空间

     create tablespace ilinkcargoagent logging datafile 'D:\app\Administrator\oradata\ilinkcargoagent.dbf' size 500m autoextend on ;

2、创建用户

     CREATE USER smartcargoagent IDENTIFIED BY penavicotjFFC

     DEFAULT TABLESPACE ilinkcargoagent 

     TEMPORARY TABLESPACE temp;


3、授权

     grant connect,resource,dba to smartcargoagent;

4、删除用户

     drop user smartcargoagent cascade;

5、修改密码

     alter user smartcargoagent identified by 123456;

 

相关文章:

  • 2021-11-28
  • 2022-12-23
  • 2022-12-23
  • 2021-10-09
  • 2022-12-23
  • 2021-08-31
  • 2022-12-23
  • 2022-01-21
猜你喜欢
  • 2021-12-09
  • 2021-10-31
  • 2022-03-09
  • 2022-12-23
  • 2021-11-28
相关资源
相似解决方案