Tuesday 5 June 2012

The minutia of parameters between editions


Today I was comparing Oracle Database parameters of a recently upgraded database to the original parameters (this upgrade used export import based upgrade, from 11.1.0.6.0 to 11.2.0.3.0)
In this circumstance we have performed a crossgrade in addition to an upgrade, moving from Enterprise Edition to Standard Edition (yes people do it for a variety of reasons, most related to cost).

Well to cut a long story short, I discovered that audit_syslog_level is an EE parameter that does not appear in an SE database.

----
[oracle@thingy ~]$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.3.0 Production on Mon Jun 4 19:40:17 2012

Copyright (c) 1982, 2011, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> show parameter syslog

NAME                                 TYPE        VALUE
------------------------------------ ----------- -----------------
audit_syslog_level                   string
SQL> 
----
[oracle@thingy2 ~]$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.3.0 Production on Tue Jun 5 09:47:51 2012

Copyright (c) 1982, 2011, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Release 11.2.0.3.0 - 64bit Production

SQL> show parameter syslog
SQL>
----

No comments:

Post a Comment