Update of the RDBMS DST using DBMS_DST (Doc ID 977512.1)

Hello!

I'm upgraded 11.2.0.1.0 to 11.2.0.4.0 in a test environment, everything is fine but trying to follow the doc 977512.1 when I use this script:


-now update the tables that need action

Set serveroutput on
Number of numfail VAR
BEGIN
DBMS_DST. UPGRADE_DATABASE(:numFail,)
parallel = > TRUE,
log_errors = > TRUE,
log_errors_table = > ' SYS. DST$ ERROR_TABLE',.
log_triggers_table = > ' SYS. DST$ TRIGGER_TABLE',.
error_on_overlap_time = > FALSE,
error_on_nonexisting_time = > FALSE);
DBMS_OUTPUT. Put_line (' Chess :'||: numfail);
END;

/


I got this response:

Double check the syntax


any idea?

Thank you

PLS-00306: wrong number or types of arguments in call to  'UPGRADE_DATABASE'

This means that MOS document is buggy or you have a copy-paste, mistype issue...

Basically specified parameters are not good. You maynot pass required parameters OR use the incorrect parameter name or something similar issue on appeal...

Check the parameters using desc DBMS_DST.UPGRADE_DATABASE ORthe official documentation of this procedure to resolve this problem:

http://docs.Oracle.com/CD/E11882_01/AppDev.112/e40758/d_dst.htm#CIHJEIJC

AS I see you have a typing error in the setting log_errors you, it's like leg_errors.

HTH,

Zoltan


Tags: Database

Similar Questions

Maybe you are looking for