This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here's how to lock or unlock Oracle database user accounts. | |
SQL> ALTER USER username ACCOUNT LOCK; | |
SQL> ALTER USER username ACCOUNT UNLOCK; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |