A Simple Photo of mine taken in Canary Wharf, London
Oracle Database
1. How to change oracle user account password?
- Login to Oracle database using SQL Plus session.
- Type the command "password" at the prompt. And follow the instructions
2. How to terminate a hung user session with oracle database?
- Login to Oracle database as sysadm user.
- Query the database for the following:
select sid, serial#, status, username, osuser, program from v$session where status='ACTIVE'; - Terminate the session.
alter system kill session 'xx, xxxx'; where xx is sid, and xxxx is serial# of session.
MySQL Database
Visit the MySQL Website at: MySQL.com