Tags

11g (5) 12c (6) 18c (3) 19c (4) ASM (1) Critical Patch (11) Data Pump (1) Dataguard (9) Diverse (3) GRID (7) GitLab (2) Linux (8) OEM (2) ORA Errors (13) Oracle (12) RMAN (4)
Showing posts with label ORA-32004: obsolete or deprecated parameter. Show all posts
Showing posts with label ORA-32004: obsolete or deprecated parameter. Show all posts

Friday, January 24, 2020

ORA-32004: obsolete or deprecated parameter



ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance

ORA-32004:
You can fix the above error as follow.

PURPOSE: All documents are provided on this Blog just for educational purposes only.  Please make sure that you run it in your test environment before to move on to production environment.

Try to find which parameter is deprecated.

col NAME format a30;
col VALUE format a10;
select p.name,p.value from v$parameter p, v$spparameter s where s.name=p.name and p.isdeprecated='TRUE' and s.isspecified='TRUE';
NAME                           VALUE
------------------------------ ----------
sec_case_sensitive_logon       FALSE

NOTE:  This parameter is deprecated in the 12c Version so no need anymore.
Now reset the parameter:

alter system reset sec_case_sensitive_logon scope=spfile;

The Error should be gone:

physical standby without duplicate command

physical standby without duplicate command create a physical standby database using RMAN without using duplicate command PURPOSE:   All docu...