2020-11-21
ORACLE数据库客户端和服务器端建立TCP连接的过程?
ORACLE数据库客户端和服务器端建立TCP连接的过程?
我来答
添加附件
收藏
分享
问题补充
2条回答
默认
最新
回答交流
提交
问题信息
请登录之后查看
邀请回答
暂无人订阅该标签,敬请期待~~

ORACLE数据库客户端和服务器端建立TCP连接的过程?
These are the steps for a client connection:
1.Client initiates a connection to the database so it connects to the listener
2.Listener starts (fork) a dedicated database process that will receive this connection (session)
3.After this dedicated process is started, the listener passes the connection from the client to this process
4.The server process takes the connection from the listener to continue the handshake with the client
5.Server process and client exchange information required for establishing a session (ASO, Two Task Common, User logon)
6.Session is opened