Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

DBA - Process: Client Processes

Back


Client Processes

Client and Server Processes


Connections and Sessions


process_session_connection01

  • user hr can have multiple connections to a database. 单一用户可以由多个连接

process_session_connection

  • user hr can have single connections to a database with multiple sessions. 单一用户可以有多个会话

V$SESSION

SELECT sid, serial#, paddr FROM V$SESSION WHERE username = user;

client_process_lab01


Database Operations

Target Identified
database operation operation name + execution ID
session session ID + serial number

TOP