(1)使用SYSTEM身份连接到数据库。
system/Jsj123456@orcl
(2)创建一个用户User_+学号后五位,如User_71101,密码自定,默认表空间为US ERS,临时表空间为TEMP,对表空间没有配额限制。
create user User_10424
identified by Jsj123456
default tablespace USERS
temporary tablespace TEMP;
(3)创建一个用户配置文件User_Profile_学号后五位,包含的资源及口令限制如下:
* 该用户最多可以建立3个并发的会话连接。
* 用户执行语句使用的CPU最长时间为10分钟。
* 空闲时间超过15分钟后,断开与用户的连接。
* 限制用户每次调用SQL语句时,能够读取的数据库块数为100.
* 限制用户在登录到Oracle数据库时允许失败的次数为3.
create profile User_Profile_10424 limit
sessions_per_user 3
cpu_per_session 60000
idle_time 15
logical_reads_per_call 100
failed_login_attempts 3;
(4)为您创建的用户指定上述资源配置文件。
alter user User_10424 profile User_Profile_10424;
(5)向新建用户授予连接数据库系统权限。(session)
grant create session to User_10424;
(6) 向新建用户授予对象(原有个人用户名下).emp的select权限,并以新建 用户连接到数据库,查询原有个人用户名下的emp表。
grant select on Jsj424.emp to User_10424;
User_10424/Jsj123456@orcl
select * from Jsj424.emp;
(7)撤销向新建用户授予的系统权限,取而代之向用户授予CONNECT角色。
revoke create session from User_10424;
grant connect to User_10424;