Skip to main content

Oracle Database 12.2.0.1 New Init Parameters

Oracle Database 12.2.0.1 is available now in the Oracle Cloud.
And this is the list of 46 new init.ora/spfile parameters compared to Oracle Database 12.1.0.2 - including the links (where possible) to the Oracle Database 12.2 Reference documentation.

Parameter
Description
LDAP lookup for DBLINKS
Allow read access for SGA to users of Oracle owner group
Replace exact aggregation with approximate aggregation
Replace count distinct with approx_count_distinct
Replace percentile_* with approx_percentile
number of I/O processes per domain in the ASM IOSERVER instance
Setting for Autotask Maximum Maintenance PDBs
Enable/Disable AWR automatic PDB flushing
cdb_cluster [undocumented
if TRUE startup in CDB Cluster mode
cdb_cluster_name [undocumented]
CDB Cluster name
CloneDB Directory
Parallel degree for a CONTAINERS() query
default for DDL cursor invalidation semantics
Data Guard SYNC latency
Size of data transfer cache
Default sharing clause
disable_pdb_feature [undocumented]
Disable features
Enable/Disable Automated Maintenance for Non-Root PDB
Enable DNFS Dispatcher
List of Enabled PDB patterns
whether to encrypt newly created tablespaces
Enable Exafusion
external keystore credential location
Enable IMC support on ADG
Controls which In-Memory Expressions are populated in-memory
Controls which user-defined virtual columns are stored in-memory
time to delay an internal initiated abort (in seconds)
indicates whether the instance read-only or read-write or read-mostly
Use longer module and action
maximum number of concurrent Data Pump Jobs per PDB
maximum session idle time in minutes
MAX IO per second
MAX MB per second
max number of pdbs allowed in CDB or Application ROOT
Number of OFS threads
one_step_plugin_for_pdb_with_tde [undocumented]
Facilitate one-step plugin for PDB with TDE encrypted data
controls all types of adaptive plans
controls all types of adaptive statistics
Outbound DBLINK Protocols allowed
default remote database recovery file location for refresh/relocate
goldengate resource manager enabled
Minimum, guaranteed size of PDB's SGA
duplicated table refresh rate (in seconds)
Preserve state cross standby role transition
target_pdbs [undocumented]
Parameter is a hint to adjust certain attributes of the CDB
use uniform timestamp formats vs pre-12.2 formats

Comments

Popular posts from this blog

ORA-65139: Mismatch between XML metadata file and data file

Error: CDB$ROOT@EBTUPRDC> CREATE PLUGGABLE DATABASE EBTUSPRDPDB1 using '/home/oracle/EBTUSPRDC.xml' nocopy tempfile reuse; CREATE PLUGGABLE DATABASE EBTUSPRDPDB1 using '/home/oracle/EBTUSPRDC.xml' nocopy tempfile reuse * ERROR at line 1: ORA-65139: Mismatch between XML metadata file and data file /u05/odb/ORADATA_1/EBTUSPRDC/datafile/system.1531.807800993 for value of fcpsb (2230502002 in the plug XML file, 2230505492 in the data file) Fix: Don't open Non-CDB database until we complete pdb creation other wise we will get above error. Shutdown immediate; startup mount; alter database open read only; create xml file. shutdown immediate; Connect to CDB and Create Pluggable database .

Useful OEM Queries to get Target details from OEM Repository

List Targets with TNS Listener ports configured : SELECT mgmt$target.host_name , mgmt$target.target_name , mgmt$target.target_type , mgmt$target_properties.property_name , mgmt$target_properties.property_value FROM mgmt$target , mgmt$target_properties WHERE ( mgmt$target.target_name = mgmt$target_properties.target_name ) AND ( mgmt$target.target_type = mgmt$target_properties.target_type ) and ( mgmt$target.target_type = 'oracle_listener' ) and ( mgmt$target_properties.property_name = 'Port' ); Devora02       LISTENER_ora02                       oracle_listener Port 1529 Devora01       LISTENER_ora01                       oracle_listener Port 1529 Devora04       LISTENE...

TFA-00002 : Oracle Trace File Analyzer (TFA) is not running

TFA Failed to start listening for commands on one of the Rac Node : As a root user /etc/init.d/init.tfa  start Starting TFA.. start: Job is already running: oracle-tfa Waiting up to 100 seconds for TFA to be started.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Successfully started TFA Process.. . . . . . TFA-00002 : Oracle Trace File Analyzer (TFA) is not running TFA Failed to start listening for commands Solution : run synctfanodes.sh  if you have root password . if no root password copy below files to TFA Failed node and try to restart TFA .. Please check whether these 4 files exist on all nodes are similar. TFA_HOME/server.jks TFA_HOME/client.jks TFA_HOME/internal/ssl.properties   TFA_HOME/internal/ portmapping.txt If not similar just copy these files to TFA Failing node and try TFA Restart ..It Worked for me .   [root@host01]# ./tfactl  -v "debug" start Starting TFA...