Skip to content

Instantly share code, notes, and snippets.

View iguissouma's full-sized avatar

iguissouma iguissouma

View GitHub Profile
To add a Classpath to WebSphere AS:
Servers > Application Servers > SERVER_NAME > Server Infrastructure > Java and Process Management > Process Definition > Java Virtual Machine
There is the Classpath box there for adding in Paths.
Here's how to lock or unlock Oracle database user accounts.
SQL> ALTER USER username ACCOUNT LOCK;
SQL> ALTER USER username ACCOUNT UNLOCK;
To alter the password expiry policy for a certain user profile in Oracle first check wich profile the user is in using:
select profile from DBA_USERS where username = '<username>';
Then you can change the limit to never expire using:
alter profile <profile_name> limit password_life_time UNLIMITED;
If you want to previously check the limit you may use: