设置sys口令和system口令
安装结束 重新启动机器
打开 http://127.0.0.1/isqlplus/
-----------------------------------------------------------------
启动SQLPLUS,输入以下命令
--创建用户
create user alef IDENTIFIED BY 密码;
设置角色权限
-- Grant/Revoke role privileges
grant connect to alef;
grant resource to alef;
-- Grant/Revoke system privileges
grant alter session to alef;
grant create cluster to alef;
grant create database link to alef;
grant create sequence to alef;
grant create session to alef;
grant create synonym to alef;
grant create table to alef;
grant create view to alef;
grant dba to alef;