oracle
環境
Oracle
一條簡單的修改用戶密碼SQL語句
alter user ** identified by ***;
竟然會掛住在那
此時做了個
後重啟了
FYI:
相關BUG
Description
In
attempts to retry
a problem as the row cache entry is locked for the duration of the
delay
for specific users / schemas
This
by setting event
eg:
event=
This
ie
with extreme caution
Example scenario:
A mix of correct and incorrect logon attempts occur for user X
On each successive failed login attempt the failed logon count
is incremented for user X
Without this fix (without the event set):
After
at
the user X row cache lock is held in exclusive mode preventing
any concurrent logon attempt as user X (and preventing any
other operation which would need the row cache lock for user X)
With the fix (with the event set):
There is no sleep delay
In either scenario the configured logon profile rules are still
applied (eg: The profile option FAILED_LOGIN_ATTEMPTS is still
honoured and so if the account becomes locked due to exceeeding
this FAILED_LOGIN_ATTEMPTS then further attempts to
log in will then correctly fail immediately with no delay)
Note:
One off fixes for this issue for
interim patches for
Work Around:
Ensure the correct password is used
intensive logons
Getting a Fix
Use one of the
(for Patch Sets / bundles use the latest version available as
contents are cumulative
the first version where the fix is included)
or
You can check for existing interim patches here: Patch:
總結
alter system set event=
這
後經過驗證確實是屬於
From:http://tw.wingwit.com/Article/program/Oracle/201311/16662.html