We all might know that, to stop collecting automatic statistics, we disable the scheduler job by issuing the following:
BEGIN
DBMS_SCHEDULER.DISABLE('GATHER_STATS_JOB');
END;

The question is, how to know whether the scheudler is already disabled or not? Which dict table could help me?

Regards