How to see background processes in Oracle? Queries to see currently running background processes?
Ezana Answered question 20/04/2023
DBA scripts to query currently running background processes:
1 | select * from v$session where type = 'BACKGROUND' ; |
Ezana Answered question 20/04/2023