Can I drop old sys owned jobs
I have a few very old databases that were originally created as 9i or 10g, and have been upgraded many times. Currently they are release 12.1.0.2. I am cleaning up old jobs prior to 19c upgrades. I have found these two old jobs owned by SYS in a few of these old databases.
Select what from dba_jobs where log_user='SYS';
BEGIN MGMT_BSLN.COMPUTE_ALL_STATISTICS;/*DB*/END;
BEGIN MGMT_BSLN.SET_ALL_THRESHOLDS;/*DB*/END;
Can I just delete these jobs? I think they are completely obsolete. MGMT_BSLN.COMPUTE_ALL_STATISTICS is running as a scheduler job now. I have no idea what MGMT_BSLN.SET_ALL_THRESHOLDS is.