SYS.DBMS_IJOB.DROP_USER_JOBS('SCHEMA_NAME')
I have a database that every night drop some schemas and restore them again. After restore a post script is running. The first command is "EXEC SYS.DBMS_IJOB.DROP_USER_JOBS('SCHEMA_NAME');" I guess this drop_user_jobs procedure is a custom procedure that is defined in the DBMS_IJOB package. I have tried to find the definition but i can't find it.
I want to know what exactly is going on because i need to implement this functionality to an another database.
Any help would be appreciated. Thank you in advance.