Many of my users do not use SQLPlus. I cannot give them alter user. We expire passwords every 60 days.
I can't get the SQLPlus command "password" to work in SQL developer.
I don't want to write them a package to change their passwords since we have a lot of databases. Do I have a better option?
The correct syntax for updating the password using SQL Developer is:
alter user
user_name
identified by
new_password
replace
old_password
;
You can check more options for this command here: ALTER USER-Oracle DOCS