oracle10g-安全性 用户 角色的创建与授权

表空间

用户
通过组
select user from dual;

与操作系统紧密结合

ora_dba是administrator的成员

创建用户//不要加引号

create user sym profile default indentified by sym account unlock ;
grant connect to sym;
desc dba_users;
select username from dba_users;
修改用户
授权
grant select on scott.dept to sym
修改表空间
alter user sym default tablespace tt;
修改密码
alter user sym identified by sym1
锁定
alter user sym account lock;
解锁
alter user sym account unlock;
级联授权
grant select/insert/update/delete on scott.dept to sym with grant option;
所有操作
grant all on scott.dept to sym with grant option;
过程授权
grant execute on sys.procname to sym;
系统授权
grant create user to sym
有创建权限不一定有删除权限 要分别授权
grant drop user to sym;
系统级联授权
grant create user to sym with admin option
解除权限
revoke create user from sym
删除用户
drop user sym


角色管理

角色的创建
create role myrole

角色的授权
grant select on scott.dept to myrole
grant myrole to sym


配置文件的设置oem


什么是配置文件 
保证安全性

怎么使用配置文件
使用oem操作

posted @ 2010-09-30 09:31  gege_s  Views(728)  Comments(0Edit  收藏  举报