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 SESSIONS_PER_USER 限制