一:用户之间表的访问:
例如:linuxidc用户想访问system用户中的users表,命令如下
:
grant select on users to linuxidc;(这是在用户为system下所执行的命令,此时如果在
linuxidc用户下只能查询system用户中users表的数据)如果想对system表中的数据进
行增删改查则可以执行如下命令:
grant all on users to linuxidc;
注意:在linuxidc用户中进行查询system用户中的表时,必须要加上system,例如:
Select * from system.users; 二:账户的锁定与解锁
账户锁定(profile)
概述:指定该账户登陆时最多可以输入密码的次数和天数
例如:指定linuxidc用户最多尝试3次登陆,锁定的天数为2天
a)创建sql命令:
create profile linuxidc_lock limit failed_login_attempts 3 password_lock_time 2;
b)执行sql命令:
alter user linuxidc profile linuxidc_lock;
账户解锁
Sql命令:alter user linuxidc account unlock;
更多Oracle相关信息见 专题页面