Oracle® Database Upgrade Guide 11g Release 1 (11.1) Part Number B28300-01 |
|
|
View PDF |
This appendix lists changes to initialization parameters and the data dictionary across different releases of Oracle Database. This appendix also discusses compatibility issues with certain initialization parameters.
This appendix covers the following topics:
Note:
Some of the initialization parameters listed in this appendix are operating system-specific. See your operating system-specific Oracle documentation for more information about these initialization parameters.The following sections list changes to initialization parameters across different releases of Oracle Database:
See Also:
The "What's New in Oracle Database Reference" section of Oracle Database Reference for a list of new initialization parameters in Oracle Database 11g Release 1 (11.1)The following sections list initialization parameters that have been deprecated. To get a list of all deprecated initialization parameters, issue the following SQL statement:
SQL> SELECT name FROM v$parameter WHERE isdeprecated = 'TRUE';
A deprecated parameter behaves the same way as a regular parameter, except that a warning message is displayed at instance startup if a deprecated parameter is specified in the parameter file. In addition, all deprecated parameters are logged to the alert log at instance startup:
Initialization Parameters Deprecated in Oracle Database 11g Release 1 (11.1)
Initialization Parameters Deprecated in Oracle Database 10g Release 2 (10.2)
Initialization Parameters Deprecated in Oracle Database 10g Release 1 (10.1)
Initialization Parameters Deprecated in Oracle9i Release 2 (9.2)
The following initialization parameters were deprecated in Oracle Database 11g Release 1 (11.1):
BACKGROUND_DUMP_DEST
(replaced by DIAGNOSTIC_DEST
)COMMIT_WRITE
CORE_DUMP_DEST
(replaced by DIAGNOSTIC_DEST
)INSTANCE_GROUPS
LOG_ARCHIVE_LOCAL_FIRST
PLSQL_DEBUG
(replaced by PLSQL_OPTIMIZE_LEVEL
)PLSQL_V2_COMPATIBILITY
REMOTE_OS_AUTHENT
STANDBY_ARCHIVE_DEST
TRANSACTION_LAG
attribute (of the CQ_NOTIFICATION$_REG_INFO
object)USER_DUMP_DEST
(replaced by DIAGNOSTIC_DEST
)The following initialization parameters were deprecated in Oracle Database 10g Release 2 (10.2):
LOGMNR_MAX_PERSISTENT_SESSIONS
MAX_COMMIT_PROPAGATION_DELAY
REMOTE_ARCHIVE_ENABLE
SERIAL_REUSE
SQL_TRACE
The following initialization parameters were deprecated in Oracle Database 10g Release 1 (10.1):
BUFFER_POOL_KEEP
(replaced by DB_KEEP_CACHE_SIZE
)BUFFER_POOL_RECYCLE
(replaced by DB_RECYCLE_CACHE_SIZE
)GLOBAL_CONTEXT_POOL_SIZE
LOCK_NAME_SPACE
LOG_ARCHIVE_START
MAX_ENABLED_ROLES
PARALLEL_AUTOMATIC_TUNING
PLSQL_COMPILER_FLAGS
(replaced by PLSQL_CODE_TYPE
and PLSQL_DEBUG
)SQL_VERSION
The following sections list initialization parameters that have been made obsolete:
Initialization Parameters Obsolete in Oracle Database 11g Release 1 (11.1)
Initialization Parameters Obsolete in Oracle Database 10g Release 2 (10.2)
Initialization Parameters Obsolete in Oracle Database 10g Release 1 (10.1)
Initialization Parameters Obsolete in Oracle9i Release 2 (9.2)
Note:
An attempt to start a database using one or more obsolete initialization parameters will succeed, but a warning is returned and recorded in the alert log.DDL_WAIT_FOR_LOCKS
LOGMNR_MAX_PERSISTENT_SESSIONS
PLSQL_COMPILER_FLAGS
DBLINK_ENCRYPT_LOGIN
HASH_JOIN_ENABLED
LOG_PARALLELISM
MAX_ROLLBACK_SEGMENTS
MTS_CIRCUITS
MTS_DISPATCHERS
MTS_LISTENER_ADDRESS
MTS_MAX_DISPATCHERS
MTS_MAX_SERVERS
MTS_MULTIPLE_LISTENERS
MTS_SERVERS
MTS_SERVICE
MTS_SESSIONS
OPTIMIZER_MAX_PERMUTATIONS
ORACLE_TRACE_COLLECTION_NAME
ORACLE_TRACE_COLLECTION_PATH
ORACLE_TRACE_COLLECTION_SIZE
ORACLE_TRACE_ENABLE
ORACLE_TRACE_FACILITY_NAME
ORACLE_TRACE_FACILITY_PATH
PARTITION_VIEW_ENABLED
PLSQL_NATIVE_C_COMPILER
PLSQL_NATIVE_LINKER
PLSQL_NATIVE_MAKE_FILE_NAME
PLSQL_NATIVE_MAKE_UTILITY
ROW_LOCKING
SERIALIZABLE
TRANSACTION_AUDITING
UNDO_SUPPRESS_ERRORS
The lists of deprecated and obsolete initialization parameters earlier in this appendix show changes to initialization parameters across different releases of Oracle Database. However, certain initialization parameter changes require special attention because they might raise compatibility issues for your database. These parameter changes are described in the following sections.
The following section describes a compatibility issue introduced in Oracle Database 11g Release 1 (11.1).
The following sections describe compatibility issues introduced in Oracle Database 10g.
Starting with Oracle Database 10g Release 1 (10.1), the number of cached cursors is determined by the SESSION_CACHED_CURSORS
initialization parameter. In previous Oracle Database releases, the number of SQL cursors cached by PL/SQL was determined by the OPEN_CURSORS
initialization parameter.
Starting with Oracle Database 10g Release 1 (10.1), the default value of DB_BLOCK_SIZE
is operating system specific, but is typically 8 KB (8192 bytes). In previous Oracle Database releases, the default value was 2 KB (2048 bytes). If DB_BLOCK_SIZE
is not specified in the parameter file when upgrading from Oracle Database9i Release 2 (9.2), then you receive an error when attempting to start up your database. Add the following to your parameter file:
DB_BLOCK_SIZE = 2048
If DB_BLOCK_SIZE
is specified in the parameter file, then Oracle Database uses this value instead of the default value of 8 KB.
Starting with Oracle Database 10g, the OPTIMIZER_MAX_PERMUTATIONS
initialization parameter has been made obsolete. If you are upgrading from Oracle9i and have OPTIMIZER_FEATURES_ENABLE
set to 8.1.7
or lower and OPTIMIZER_MAX_PERMUTATIONS
explicitly set to 2000
in the parameter file, then the release 8.1.7 default of 80000
is used when you start up the Oracle Database 11g Release 1 (11.1) database.
Setting OPTIMIZER_FEATURES_ENABLE
to 9.0.0
or higher sets the default to 2000
.
Starting with Oracle Database 10g Release 1 (10.1), if the COMPATIBLE
initialization parameter is set to 10.0.0
or higher, then archive log file names must contain each of the elements %s
(sequence), %t
(thread), and %r
(resetlogs ID) to ensure that all archive log file names are unique. If the LOG_ARCHIVE_FORMAT
initialization parameter is set in the parameter file, then make sure the parameter value contains the %s
, %t
, and %r
elements.
Starting with Oracle Database 10g Release 1 (10.1), Automatic PGA Memory Management is now enabled by default (unless PGA_AGGREGATE_TARGET
is explicitly set to 0
or WORKAREA_SIZE_POLICY
is explicitly set to MANUAL
). PGA_AGGREGATE_TARGET
defaults to 20% of the size of the SGA, unless explicitly set. Oracle recommends tuning the value of PGA_AGGREGATE_TARGET
after upgrading.
See Also:
Oracle Database Performance Tuning GuideIn previous releases, the amount of shared pool memory that was allocated was equal to the value of the SHARED_POOL_SIZE
initialization parameter plus the amount of internal SGA overhead computed during instance startup. Starting with Oracle Database 10g Release 1 (10.1), the value of SHARED_POOL_SIZE
must now also accommodate this shared pool overhead.
Starting with Oracle Database 10g Release 1 (10.1), the recommended way to turn on shared server mode is to set SHARED_SERVERS
to a value greater than 0
. This can be done at startup or dynamically after the instance is started. If shared server mode is turned off by setting SHARED_SERVERS
to 0
, then this only affects new clients (that is, no new clients can connect in shared mode; clients that are already connected in shared mode continue to be serviced by shared servers).
In previous releases, the recommended way to turn on shared server mode was to set DISPATCHERS
. If SHARED_SERVERS
was changed to 0
and shared server clients were still connected, then client requests would hang.
Prior to Oracle Database 10g Release 1 (10.1), the following shared server parameters could not be changed dynamically:
MAX_SHARED_SERVERS
MAX_DISPATCHERS
SHARED_SERVER_SESSIONS
CIRCUITS
Starting with Oracle Database 10g Release 1 (10.1), these shared server parameters are dynamically modifiable.
Starting with Oracle Database 10g Release 1 (10.1), the default for DISPATCHERS
is '(PROTOCOL=TCP)'
. DISPATCHERS
is given this default value if it is not set or if it is set to ''
and SHARED_SERVERS
is set to 1
or higher.
In previous releases, there was no default value for DISPATCHERS
.
Starting with Oracle Database 10g Release 1 (10.1), if DISPATCHERS
is set such that the total number of dispatchers is equal to 0, then SHARED_SERVERS
defaults to 0
. If DISPATCHERS
is set such that the total number of dispatchers is greater than 0, then SHARED_SERVERS
defaults to 1
as in previous releases.
In previous releases, if DISPATCHERS
was set such that the number of dispatchers is equal to 0, then SHARED_SERVERS
defaulted to 1
.
Starting with Oracle Database 10g Release 1 (10.1), there is no preset default for MAX_SHARED_SERVERS
. The maximum number of shared servers varies depending on the number of free process slots. If MAX_SHARED_SERVERS
is not set or is set to a value greater than or equal to PROCESSES
, then PMON does not spawn any more shared servers if the number of free process slots is either 2 (if PROCESSES
is less than 24
) or is less than 1 / 8, unless the existing servers are involved in a deadlock situation. If the existing servers are involved in a deadlock situation, then no matter the transaction load, a new server is spawned if there is a free process slot.
In previous releases, the default for MAX_SHARED_SERVERS
is 20
, or 2 * SHARED_SERVERS
, whichever is greater, subject to the condition that MAX_SHARED_SERVERS
does not exceed PROCESSES
.
Starting with Oracle Database 10g Release 1 (10.1), SHARED_SERVERS
can be set higher than MAX_SHARED_SERVERS
, in which case the number of servers remains constant at the level set for SHARED_SERVERS
. This is to allow the range SHARED_SERVERS
- MAX_SHARED_SERVERS
to be changed without having to change these parameters in a specific order.
In previous releases, SHARED_SERVERS
cannot be set higher than MAX_SHARED_SERVERS
.
Starting with Oracle Database 10g Release 1 (10.1), there is no preset default for SHARED_SERVER_SESSIONS
. That is, if SHARED_SERVER_SESSIONS
is not specified, then shared server sessions can be created as needed and as permitted by the session limit.
In previous releases, the default for SHARED_SERVER_SESSIONS
was the maximum number of virtual circuits (CIRCUITS
), or the maximum number of database sessions (SESSIONS
) - 5
, whichever is smaller.
Starting with Oracle Database 10g Release 1 (10.1), there is no preset default for CIRCUITS
. That is, if CIRCUITS
is not specified, then circuits can be created as needed and as permitted by dispatcher constraints and system resources.
In previous releases, the default for CIRCUITS
was the maximum number of database sessions (SESSIONS
) if shared server mode was enabled, 0
otherwise.
Starting with Oracle Database 10g Release 1 (10.1), there is no preset default for MAX_DISPATCHERS
. MAX_DISPATCHERS
no longer limits the number of dispatchers; the user can increase the number of dispatchers with the DISPATCHERS
parameter as long as there are free process slots and system resources.
In previous releases, the default for MAX_DISPATCHERS
was 5
, or the total number of dispatchers specified with the DISPATCHERS
parameter, whichever was greater.
The following sections list changes to static data dictionary views across different releases of Oracle Database:
See Also:
The "What's New in Oracle Database Reference" section of Oracle Database Reference for a list of new static data dictionary views in Oracle Database 11g Release 1 (11.1)The following sections list static data dictionary views that have been deprecated:
Static Data Dictionary Views Deprecated in Oracle Database 11g Release 1 (11.1)
Static Data Dictionary Views Deprecated in Oracle Database 10g Release 1 (10.1)
Static Data Dictionary Views Deprecated in Oracle9i Release 2 (9.2)
No static data dictionary views were deprecated in Oracle Database 11g Release 1 (11.1).
The following static data dictionary views were deprecated in Oracle Database 10g Release 1 (10.1):
ALL_STORED_SETTINGS
(replaced by ALL_PLSQL_OBJECT_SETTINGS
)DBA_STORED_SETTINGS
(replaced by DBA_PLSQL_OBJECT_SETTINGS
)USER_STORED_SETTINGS
(replaced by USER_PLSQL_OBJECT_SETTINGS
)The following sections list static data dictionary views that have been made obsolete:
The following sections list static data dictionary views with dropped columns:
Static Data Dictionary Views with Dropped Columns in Oracle Database 11g Release 1 (11.1)
Static Data Dictionary Views with Dropped Columns in Oracle Database 10g Release 2 (10.2)
The following static data dictionary view columns were dropped in Oracle Database 11g Release 1 (11.1):
Static Data Dictionary View | Dropped Columns |
---|---|
V$DATAFILE |
PLUGGED_IN |
The following sections list changes to dynamic performance views (V$
views) across different releases of Oracle Database:
See Also:
The "What's New in Oracle Database Reference" section of Oracle Database Reference for a list of new dynamic performance views in Oracle Database 11g Release 1 (11.1)The following sections list dynamic performance views that have been deprecated:
The following dynamic performance views were deprecated in Oracle Database 10g Release 1 (10.1):
GV$CACHE
GV$CACHE_TRANSFER
GV$CLASS_CACHE_TRANSFER
(replaced by GV$INSTANCE_CACHE_TRANSFER
)GV$FALSE_PING
GV$FILE_CACHE_TRANSFER
(replaced by GV$INSTANCE_CACHE_TRANSFER
)GV$GC_ELEMENTS_WITH_COLLISIONS
GV$LOCK_ACTIVITY
GV$TEMP_CACHE_TRANSFER
(replaced by GV$INSTANCE_CACHE_TRANSFER
)V$CACHE
V$CACHE_LOCK
V$CACHE_TRANSFER
V$CLASS_CACHE_TRANSFER
(replaced by V$INSTANCE_CACHE_TRANSFER
)V$FALSE_PING
V$FILE_CACHE_TRANSFER
(replaced by V$INSTANCE_CACHE_TRANSFER
)V$GC_ELEMENTS_WITH_COLLISIONS
V$LOCK_ACTIVITY
V$TEMP_CACHE_TRANSFER
(replaced by V$INSTANCE_CACHE_TRANSFER
)The following sections list dynamic performance views that have been made obsolete:
The following dynamic performance views were made obsolete in Oracle Database 10g Release 1 (10.1):
GV$ Views | V$ Views |
---|---|
GV$COMPATIBILITY |
V$COMPATIBILITY |
GV$COMPATSEG |
V$COMPATSEG |
GV$MLS_PARAMETERS |
V$MLS_PARAMETERS |
GV$MTS |
V$MTS |
The following sections list dynamic performance views with renamed columns:
The dynamic performance view columns listed in Table A-1 were renamed in Oracle Database9i Release 2 (9.2):
Table A-1 Dynamic Performance Views with Renamed Columns in Release 9.2
Dynamic Performance View | Pre-Release 9.2 Column Name | Release 9.2 and Higher Column Name |
---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The following sections list dynamic performance views with dropped columns. If an application requires one or more of these columns, then modify the application accordingly:
The following dynamic performance view columns were dropped in Oracle Database9i Release 2 (9.2):
Dynamic Performance View | Dropped Columns |
---|---|
GV$DATABASE and V$DATABASE |
STANDBY_MODE |
GV$LOGMNR_CALLBACK and V$LOGMNR_CALLBACK |
FUNC_NAME
|
GV$LOGMNR_REGION and V$LOGMNR_REGION |
ID
|