It could be the JOB_QUEUE_PROCESSES is 2 in your database
(show parameter job in svrmgr to show the actual value)JOB_QUEUE_PROCESSESThe job queue (or SNP) background processes are started when the Oracle instance is started. There are as many SNP processes started as specified in the INIT.ORA parameter JOB_QUEUE_PROCESSES. The range of valid values is from 0 to 36, so there can be a maximum of 36 SNP processes per Oracle instance. Under most operating systems, the characters SNP will appear as part of the process name. For example, under UNIX, an Oracle instance called DEV with three job queue processes would show the following process names:ora_DEV_snp0
ora_DEV_snp1
ora_DEV_snp2One significant difference between the SNP background processes and other Oracle background processes is that killing an SNP process will not crash the instance. While you’re not likely to want to do this very often, this behavior is useful to know in case a job queue process “runs away” and consumes excessive resources. When an SNP process is killed or fails on its own, Oracle automatically starts a new one to replace it.