1

用SQL  Plus打开

请输入用户名:  sys   as   sysdba
输入口令:

成功之后如图:

Oracle安装及创建角色

 

2

如果没有用户的话要先创建用户,并设定初始密码
create user test identified by test;

Oracle安装及创建角色

修改密码的话就是
alter user test identified by test;

3

create user 用户名 identified by "密码";  

授权:grant create session to 用户名;  

grant  resource to test;

            grant create table to  用户名;  

            grant create tablespace to  用户名;  

            grant create view to  用户名;

Oracle安装及创建角色

相关文章:

  • 2021-05-07
  • 2021-12-24
  • 2021-10-15
  • 2022-12-23
  • 2022-12-23
  • 2021-12-19
  • 2021-12-13
  • 2022-12-23
猜你喜欢
  • 2021-08-24
  • 2022-01-04
  • 2022-12-23
  • 2022-01-17
  • 2021-10-12
相关资源
相似解决方案