curedfisher

1.用sysdba登录

(1)cmd 控制台:sqlplus / as sysdba;

(2)drop user test cascade;

 

2.创建用户

-- Create the user 
create user test
  identified by test
  default tablespace hOTEL_DATA
  temporary tablespace temp;
-- Grant/Revoke role privileges 
grant dba to test;
grant connect to test;

分类:

技术点:

相关文章:

  • 1970-01-01
  • 2021-11-30
  • 2021-11-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-19
猜你喜欢
  • 2022-12-23
  • 2021-12-10
  • 2022-02-09
  • 2021-05-30
  • 2021-12-10
  • 2022-12-23
  • 2022-02-17
相关资源
相似解决方案