Oracle profile 使用技巧

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle profile 使用技巧相关的知识,希望对你有一定的参考价值。

给scott用户分配一个profile要求如下:

1、尝试登录的次数最多4次;

2、如果4次输入错误,则锁定该用户2天;

3、密码每隔5天修改一次,宽限期为2天;

答:

SQL>conn sys/orcl as sysdba;

SQL>create profile scottprofile limit failed_login_attempts 4 password_lock_time 2 password_life_time 5 password_grace_time 2;

SQL>alter user scott profile scottprofile;

以上是关于Oracle profile 使用技巧的主要内容,如果未能解决你的问题,请参考以下文章

Oracle profile 使用技巧

Oracle修改用户Profile SESSIONS_PER_USER 限制

关于oracle的profiles

oracle通过profile限制用户的恶意登录和使用期限

Oracle PUP(PRODUCT_USER_PROFILE)配置和使用

linux下创建oracle用户为什么没有.bash_profile文件