How does Oracle server handles db connections? Specifically
- Does it provide unique id for each connections to client?
- How does it handle/close connections for which clients are not alive?
Regards,
Sachin
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It depends.
1. Assuming that you are using a dedicated architecture each session is given a Session ID (column SID in V$SESSION)
2. Oracle does not pick up on dead connections unless you set SQLNET.EXPIRE_TIME in the server’s sqlnet.ora file
Daniel