1.你可以用 alter user 用户ID account unlock 先解开这个用户锁定2.这个机制是在用户的profile中设定,profile主要是对系统资源和用户囗令的管理,你可以打开查看,里面有个 FAILED_LOGIN_ATTEMPTS 参数,你还可以结合其它的参数一起使用来管理资源和囗令。系统有个默认的profile叫default给个示例:1.资源的create profil 展开
1.你可以用 alter user 用户ID account unlock 先解开这个用户锁定2.这个机制是在用户的profile中设定,profile主要是对系统资源和用户囗令的管理,你可以打开查看,里面有个 FAILED_LOGIN_ATTEMPTS 参数,你还可以结合其它的参数一起使用来管理资源和囗令。系统有个默认的profile叫default给个示例:1.资源的create profile luck_prof limitsessions_per_user 8cpu_per_session 16800logical_reads_per_session 23688connect_time 268idle_time 38;2.囗令的,如修改 default alter profile default limitpassword_life_time 60password_grace_time 10password_reuse_time 1800failed_login_attempts 3password_lock_time 1/1440;然后再创建或修改用户时指定一个profile如:create user wuseridentified by wuser.......profile luck_prof ;希望以上能给你提供解决问题的方向 收起