Month: August 2016

How to get rid of jobs / dbms_job (old style) that you don't own

Do you have some legacy DBMS_JOBS hanging out there running – that somebody left – and abandoned to “rust”.  Need to get rid of them even though you don’t own them?  Try this as long as you can connect as sysdba: –select * from dba_jobs; set heading off set feedback off select ‘execute sys.dbms_ijob.remove(‘||trim(to_char(job))||’);’ from …

How to get rid of jobs / dbms_job (old style) that you don't own Read More »

RMAN-06059 / ORA-19625 / ORA-27037 While trying to do an rman backup

Got this error message when trying to do a full rman backup in archivelog mode of a migration database… big DB I’m taking in and out of archivelog mode all the time.  Put it in archivelog mode to get a “gold” backup, out of archivelog mode to run the migration test – it’s faster that …

RMAN-06059 / ORA-19625 / ORA-27037 While trying to do an rman backup Read More »