Applies to:Oracle Server - Standard Edition - Version: 10.2.0.3
This problem can occur on any platform.
Symptoms-- Problem Statement:
Import receives the following errors:
Processing object type DATABASE_EXPORT/SCHEMA/POST_SCHEMA/PROCOBJ
ORA-39083: Object type PROCOBJ failed to create with error:
ORA-06502: PL/SQL: numeric or value error: character to number conversion error
Failing sql is:
BEGIN
dbms_scheduler.create_job('"AUTO_EDIT_NEWACCTS"',
job_type=>'PLSQL_BLOCK', job_action=>
'begin
new_acct_mgmt.autoedit_new_records;
end;'
, number_of_arguments=>0,
start_date=>'09-DEC-08 08.30.00.000000 AM AMERICA/NEW_YORK', repeat_interval=>
'FREQ=MINUTELY;INTERVAL=15'
, end_date=>NULL,
job_class=>'"DEFAULT_JOB_CLASS"', enabled=>FALSE, auto_
ORA-39083: Object type PROCOBJ failed to create with error:
ORA-06502: PL/SQL: numeric or value error: character to number conversion error
Failing sql is:
BEGIN
dbms_scheduler.create_job('"QUICK_BATCH_DATA"',
job_type=>'PLSQL_BLOCK', job_action=>
'begin
batch_new_accounts.quick_batch_data;
end;'
, number_of_arguments=>0,
start_date=>'09-DEC-08 08.10.00.000000 AM AMERICA/NEW_YORK', repeat_interval=>
'FREQ=MINUTELY;INTERVAL=15'
, end_date=>NULL,
job_class=>'"DEFAULT_JOB_CLASS"', enabled=>FALSE, auto_d
CauseWhen importing job objects with logging level set to FULL or OFF then the import for these job objects is bound to fail. SolutionPrior to exporting these job objects, precreate these jobs with the logging level set to DBMS_SCHEDULER.LOGGING_RUNS and then export and then import the job. Then change the logging level as required. ReferencesBUG:4595736 - ORA-6502 DURING IMPDP DUE TO WRONG LOGGING_LEVEL PUT IN EXPORT DUMP
|