ORA-28006: conflicting values for parameters string and string
Cause: The parameters PASSWORD_REUSE_TIME and PASSWORD_REUSE_MAX cannot both be set. One parameter should be unlimited while other is set
Action: Set one value to UNLIMITED explicitly
ORA-28006错误提示,当set操作/show命令尝试更改密码存储库参数时提示,两个参数之间有冲突。
ORA-28006: conflicting values for parameters string and string
用法:
alter profile profilename limit password_reuse_time value1
limit password_reuse value2
此错误发生,当提供的参数value1和value2与profile中的值之间存在冲突时。
常见情况:
当用户尝试设置一个profile的密码有效期,但是该profile拥有其它参数限制,而这些参数也与新设置的密码有效期有冲突时,将导致此错误的出现。
1、查看profile是否具有与新值有冲突的参数;
2、如果有冲突,将profile中与冲突参数相冲突的值进行修改;
3、重新设置profile的参数值;
4、确认新值是否保存成功。