Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/01/2009, 06:50
Avatar de matanga
matanga
 
Fecha de Ingreso: octubre-2007
Ubicación: España
Mensajes: 1.091
Antigüedad: 16 años, 6 meses
Puntos: 85
Respuesta: identificar Jobs en ejecucion

Si por job te refieres a los que se ejecutan dentro de Oracle, tienes la vista DBA_JOBS_RUNNING

Código:
oracle@10G> select * from
  2  dictionary
  3* where table_name = 'DBA_JOBS_RUNNING'

TABLE_NAME                COMMENTS
------------------------- ----------------------------------------------------
DBA_JOBS_RUNNING          All jobs in the database which are currently running
                          , join v$lock and job$
Saludos