| Oracle Resources Home - ExamGuru.net - Your Portal for the IT Certification Practice Exam Questions | |
|
Oracle OCP Certification Exam Guides - Oracle DBA Interview Questions - ExamGuru.net Home
Oracle Topics: SQL | Pl/SQL | SQL*PLUS | Backup & Recovery | Init.ora Paramaters | Replication | RMAN | DataGuard | v$ Views | Oracle 10g | Oracle RAC | Performance Tuning & Monitoring |
Oracle Processes | ||
|
There are server and background processes.
background processes
Here's a list of background processes:
Background processes have v$session.type = 'BACKGROUND'
Showing the processes
On Unix, the Oracle Processes can be listed with something like
ps -eaf | grep ora Foreground processes
While background processes do the work for Oracle itself, foreground processes do the work for clients (such as SQL statements).
Foreground processes are created by the listener.
Foreground processes have v$session.type = 'USER'
Coordinating the processes' work
Oracle uses semaphores to coordinate the work for the processes.
|