I have a peculiar issue which i cant figureout
Database: Oracle 11g USER: PASSWORD_VERSIONS column in DBA_USERS table had value 10g 11g initially.
sec_case_sensitive_logon value in V$PARAMETER is null
SYS.USER$ table had some values in PASSWORD and SPARE4 columns.
I wanted to reset the password for the user SAMPLEUSER to same password again.
Steps performed to reset the password the user to same old password (by a db person)
1.updated PASSWORD_VERSIONS column value to 10g ( not sure if this got updated during below step or it was updated manually)
2.Took the Hash value from PASSWORD column from SYS.USER$ table.
3.used the old hash value(from password column in sys.user$) to reset the password -- alter user SAMPLEUSER identified by values 'hashvalue'
Now the user is not able to connect to DB as wrong password .what is the issue here. Is it possible to fix the problem?