Hi, I've implemented successfully the
Job Notification Package. The only problem I have is the length of an existing job name. Adding job COR_OPSCHONEN_GEGEVENS, results in an error:
SQL> exec add_job_email_notification ('COR_OPSCHONEN_GEGEVENS','dba@ppf.nl','JOB_SUCCEEDED');
BEGIN add_job_email_notification ('COR_OPSCHONEN_GEGEVENS','dba@ppf.nl','JOB_SUCCEEDED'); END;
*
ERROR at line 1:
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at "SYS.ADD_JOB_EMAIL_NOTIFICATION", line 206
ORA-06512: at line 1
Adding a 'short' name of the job (e.g. COROPSCH) works fine:
SQL> exec add_job_email_notification ('COROPSCH','dba@ppf.nl','JOB_SUCCEEDED');
PL/SQL procedure successfully completed.
I do not want to rename all jobs to a 'short' name.
Does anybody know where to alter the length for the job definition so I can us the original 'long' name without the error?
Stephan