Sunday, September 27, 2026

Initialization Parameters in Oracle AI Database 26ai: Groups and Modify Levels

 ested on Oracle AI Database 26ai Enterprise Edition 23.26.3.0.0, connected to a PDB. Every number here was read from the live database. Oracle adds and removes parameters in each release, so run the queries on your own version rather than relying on these counts.

Companion post: Hidden Parameters in Oracle 26ai

Appendix A at the end has the complete list of all 568 documented parameters, with type, value, level, PDB/RAC modifiability, flags, and description.


How many parameters are there?

From X$KSPPI, the internal list of all parameters:

KindCount
Documented568
Hidden (_name)7,076
Auto-maintained (__name)61
Total7,705

V$PARAMETER shows 564 rows in this PDB: the documented parameters that apply here, plus any hidden ones that have been explicitly set. This post covers the documented ones. The hidden ones are covered in the companion post.


Modify levels: where and when can a parameter be changed?

V$PARAMETER has four flags that together describe how a parameter can be changed:

ColumnValuesMeaning
ISSES_MODIFIABLETRUE/FALSECan be changed with ALTER SESSION (for your session only)
ISSYS_MODIFIABLEIMMEDIATE / DEFERRED / FALSEALTER SYSTEM takes effect now (IMMEDIATE), only for new sessions (DEFERRED), or not at all without a restart (FALSE)
ISPDB_MODIFIABLETRUE/FALSECan be set inside a PDB, with a value specific to that PDB
ISINSTANCE_MODIFIABLETRUE/FALSECan be set per RAC instance (SID='inst1'). FALSE means all instances must share one value

In this post I combine them into one level per parameter:

LevelHow to change itScope
SESSIONALTER SESSION SET ... (also ALTER SYSTEM)One session, or the whole instance
SYSTEM (immediate)ALTER SYSTEM SET ... SCOPE=BOTHWhole instance, right away
SYSTEM (deferred)ALTER SYSTEM SET ... DEFERREDWhole instance, new sessions only
STATICALTER SYSTEM SET ... SCOPE=SPFILE + restartInstance or database, after a restart

PDB and RAC instance modifiability are separate yes/no flags on top of the level.

Levels of documented parameters (26ai)

LevelCountOf which PDB-modifiable
SESSION228155
SYSTEM (immediate)225111
STATIC11021
SYSTEM (deferred)53

In V$PARAMETER, 420 of 564 are RAC instance-modifiable and 144 must match across instances.


Grouping by functional area

Oracle doesn't store a category for each parameter, so I grouped them by name pattern (optimizer_*, parallel_*, nls_*, and so on). The grouping is my own, and anything that doesn't match a pattern falls into "Other".

AreaTotalSESSIONSYSTEM imm.SYSTEM def.STATICPDB-mod
Redo / archive / recovery / DG976429045
Optimizer / SQL / cursor514190148
Database / storage / undo37111501120
Memory33420099
Security / audit2921121412
Diagnostics / manageability18511025
NLS / globalization171700017
In-Memory175120014
Multitenant15360611
Parallel execution1375018
RAC / instance1102090
Network / connections10010005
AI Vector Search321003
ASM211001
Other2106591351132

Some patterns stand out:

  • NLS: all 17 are SESSION and PDB-modifiable. Language and territory are a per-user matter.
  • Optimizer: 41 of 51 are SESSION, and 48 of 51 are PDB-modifiable. You can test optimizer behavior in one session without touching anyone else.
  • RAC / instance: 9 of 11 are STATIC and none are PDB-modifiable. Cluster topology is set at startup.
  • Security / audit: about half (14 of 29) are STATIC. Settings like remote_login_passwordfile shouldn't change underneath running sessions.
  • Redo / archive: 64 of 97 are SESSION. That's mostly the many log_archive_dest_n and log_archive_dest_state_n parameters, which Oracle allows in ALTER SESSION.

The 30 "basic" parameters

V$PARAMETER.ISBASIC = 'TRUE' marks the parameters Oracle says most databases need to set. In 26ai there are 30 (the other 534 are "advanced"):

LevelBasic parameters (PDB-modifiable in bold)
SESSIONdb_create_file_dest, db_create_online_log_dest_1, db_create_online_log_dest_2, log_archive_dest_1, log_archive_dest_2, log_archive_dest_state_1, log_archive_dest_state_2, nls_language, nls_territory, star_transformation_enabled
SYSTEM (immediate)compatible*, db_recovery_file_dest, db_recovery_file_dest_size, open_cursors, pga_aggregate_target, processes*, remote_listener, sessions, sga_target, shared_servers, undo_tablespace
STATICcluster_database, control_files, db_block_size, db_domain, db_name, db_unique_name, instance_number, ldap_directory_sysauth, remote_login_passwordfile

* compatible and processes report ISSYS_MODIFIABLE = IMMEDIATE (I checked the raw flags), but the Reference guide documents both as needing SCOPE=SPFILE and a restart. I didn't try changing them on this database. Treat the flags as a guide, not a guarantee, and check the Reference guide for the parameters that matter.


What's set in this PDB

Non-default documented parameters here:

awr_pdb_max_parallel_slaves  5
compatible                   23.6.0
control_files                /u01/app/oracle/oradata/ORCL23/control01.ctl, ...
db_block_size                8192
db_name                      orcl23
db_recovery_file_dest        /u01/fra
db_recovery_file_dest_size   21474836480
diagnostic_dest              /u01/app/oracle
dispatchers                  (PROTOCOL=TCP) (SERVICE=orcl23XDB)
enable_pluggable_database    TRUE
job_queue_processes          8
local_listener               LISTENER_ORCL23
nls_language                 AMERICAN
nls_territory                AMERICA
open_cursors                 300
parallel_min_servers         4
pga_aggregate_target         1048576000
processes                    320
remote_login_passwordfile    EXCLUSIVE
sga_target                   0
spatial_vector_acceleration  TRUE
undo_tablespace              UNDOTBS1

compatible = 23.6.0 in a 23.26.3 database is worth noticing: the compatibility level is set lower than the software release, so new features that depend on a higher compatible value aren't available until it's raised. Raising compatible can't be undone.


Queries to run on your own version

Level and PDB flag for every parameter:

SELECT name,
       CASE WHEN isses_modifiable = 'TRUE'      THEN 'SESSION'
            WHEN issys_modifiable = 'IMMEDIATE' THEN 'SYSTEM_IMMEDIATE'
            WHEN issys_modifiable = 'DEFERRED'  THEN 'SYSTEM_DEFERRED'
            ELSE 'STATIC' END     AS lvl,
       ispdb_modifiable           AS pdb,
       isinstance_modifiable      AS rac_instance,
       isbasic, isdefault, value
FROM   v$parameter
ORDER  BY lvl, name;

Summary by level:

SELECT CASE WHEN isses_modifiable = 'TRUE'      THEN 'SESSION'
            WHEN issys_modifiable = 'IMMEDIATE' THEN 'SYSTEM_IMMEDIATE'
            WHEN issys_modifiable = 'DEFERRED'  THEN 'SYSTEM_DEFERRED'
            ELSE 'STATIC' END AS lvl,
       COUNT(*) total,
       SUM(DECODE(ispdb_modifiable,'TRUE',1,0)) pdb_modifiable
FROM   v$parameter
GROUP  BY CASE WHEN isses_modifiable = 'TRUE'      THEN 'SESSION'
               WHEN issys_modifiable = 'IMMEDIATE' THEN 'SYSTEM_IMMEDIATE'
               WHEN issys_modifiable = 'DEFERRED'  THEN 'SYSTEM_DEFERRED'
               ELSE 'STATIC' END
ORDER  BY total DESC;

What you've changed (compare with the spfile using V$SPPARAMETER):

SELECT name, value FROM v$parameter WHERE isdefault = 'FALSE' ORDER BY name;

Takeaways

  • 26ai has 568 documented parameters, and only 30 are "basic".
  • The combination of ISSES_MODIFIABLE, ISSYS_MODIFIABLE, ISPDB_MODIFIABLE and ISINSTANCE_MODIFIABLE tells you whether a change is per session, instance-wide now, instance-wide for new sessions, or needs a restart, and whether a PDB or a single RAC instance can have its own value.
  • Optimizer and NLS parameters are almost all session-level and PDB-modifiable, so they can be tested safely in one session.
  • RAC topology and many security parameters are static. Plan a restart.
  • The flags are a guide. A few parameters (compatible, processes) behave more strictly than their flags suggest.




Appendix A: Complete list of documented parameters

All 568 documented parameters in Oracle AI Database 26ai 23.26.3.0.0, extracted from X$KSPPI / X$KSPPCV as SYSDBA in a PDB. Sorted alphabetically. Regenerate this list for another release with scripts/params_extract.sql and scripts/gen_param_appendix.py.

Column legend

ColumnMeaning
TypeBoolean, String, Integer, Big integer, or Parameter file
ValueCurrent value in this PDB (X$KSPPCV.KSPPSTVL). For parameters at their default, this is the effective default. Long values are truncated with …
At default?yes = never changed. no = explicitly set; "was" shows Oracle's recorded default (KSPPSTDFL), which for some parameters is a template such as NONE rather than the effective value
LevelSESSION = ALTER SESSION (and ALTER SYSTEM); SYSTEM imm. = ALTER SYSTEM, takes effect now; SYSTEM def. = ALTER SYSTEM ... DEFERRED, new sessions only; STATIC = SCOPE=SPFILE + restart
PDBY = can be set inside a PDB with a PDB-specific value
RAC inst.Y = can differ per RAC instance (SID='...'); N = must be the same on all instances
Flagsbasic = one of Oracle's "basic" parameters; deprecated = marked deprecated in this release
DescriptionOracle's internal one-line description (X$KSPPI.KSPPDESC), as-is

A.1 Parameters by area

AreaCountParameters
Optimizer / SQL / cursor51cursor_bind_capture_destination, cursor_invalidation, cursor_sharing, cursor_space_for_time, open_cursors, optimizer_adaptive_plans, optimizer_adaptive_reporting_only, optimizer_adaptive_statistics, optimizer_capture_sql_plan_baselines, optimizer_capture_sql_quarantine, optimizer_cross_shard_resiliency, optimizer_dynamic_sampling, optimizer_features_enable, optimizer_ignore_hints, optimizer_ignore_parallel_hints, optimizer_index_caching, optimizer_index_cost_adj, optimizer_inmemory_aware, optimizer_mode, optimizer_real_time_statistics, optimizer_secure_view_merging, optimizer_session_type, optimizer_use_invisible_indexes, optimizer_use_pending_statistics, optimizer_use_sql_plan_baselines, optimizer_use_sql_quarantine, plsql_ccflags, plsql_code_type, plsql_debug, plsql_function_dynamic_stats, plsql_implicit_conversion_bool, plsql_optimize_level, plsql_v2_compatibility, plsql_warnings, query_rewrite_enabled, query_rewrite_integrity, result_cache_auto_blocklist, result_cache_execution_threshold, result_cache_integrity, result_cache_max_result, result_cache_max_size, result_cache_max_temp_result, result_cache_max_temp_size, result_cache_mode, result_cache_remote_expiration, session_cached_cursors, sql_error_mitigation, sql_history_enabled, sql_trace, sql_transpiler, star_transformation_enabled
Parallel execution13parallel_adaptive_multi_user, parallel_degree_limit, parallel_degree_policy, parallel_execution_message_size, parallel_force_local, parallel_instance_group, parallel_max_servers, parallel_min_degree, parallel_min_percent, parallel_min_servers, parallel_min_time_threshold, parallel_servers_target, parallel_threads_per_cpu
Memory33buffer_pool_keep, buffer_pool_recycle, db_16k_cache_size, db_2k_cache_size, db_32k_cache_size, db_4k_cache_size, db_8k_cache_size, db_block_buffers, db_cache_advice, db_cache_size, db_flash_cache_size, db_keep_cache_size, db_recycle_cache_size, hash_area_size, java_pool_size, large_pool_size, lock_sga, memory_max_size, memory_max_target, memory_size, memory_target, pga_aggregate_limit, pga_aggregate_target, sga_max_size, sga_min_size, sga_target, shared_pool_reserved_size, shared_pool_size, sort_area_retained_size, sort_area_size, streams_pool_size, use_large_pages, workarea_size_policy
Redo / archive / recovery / DG97archive_lag_target, db_lost_write_protect, db_recovery_auto_rekey, db_recovery_file_dest, db_recovery_file_dest_size, db_unique_name, dg_broker_config_file1, dg_broker_config_file2, dg_broker_start, fal_client, fal_server, fast_start_io_target, fast_start_mttr_target, fast_start_parallel_rollback, log_archive_config, log_archive_dest, log_archive_dest_1, log_archive_dest_10, log_archive_dest_11, log_archive_dest_12, log_archive_dest_13, log_archive_dest_14, log_archive_dest_15, log_archive_dest_16, log_archive_dest_17, log_archive_dest_18, log_archive_dest_19, log_archive_dest_2, log_archive_dest_20, log_archive_dest_21, log_archive_dest_22, log_archive_dest_23, log_archive_dest_24, log_archive_dest_25, log_archive_dest_26, log_archive_dest_27, log_archive_dest_28, log_archive_dest_29, log_archive_dest_3, log_archive_dest_30, log_archive_dest_31, log_archive_dest_4, log_archive_dest_5, log_archive_dest_6, log_archive_dest_7, log_archive_dest_8, log_archive_dest_9, log_archive_dest_state_1, log_archive_dest_state_10, log_archive_dest_state_11, log_archive_dest_state_12, log_archive_dest_state_13, log_archive_dest_state_14, log_archive_dest_state_15, log_archive_dest_state_16, log_archive_dest_state_17, log_archive_dest_state_18, log_archive_dest_state_19, log_archive_dest_state_2, log_archive_dest_state_20, log_archive_dest_state_21, log_archive_dest_state_22, log_archive_dest_state_23, log_archive_dest_state_24, log_archive_dest_state_25, log_archive_dest_state_26, log_archive_dest_state_27, log_archive_dest_state_28, log_archive_dest_state_29, log_archive_dest_state_3, log_archive_dest_state_30, log_archive_dest_state_31, log_archive_dest_state_4, log_archive_dest_state_5, log_archive_dest_state_6, log_archive_dest_state_7, log_archive_dest_state_8, log_archive_dest_state_9, log_archive_duplex_dest, log_archive_format, log_archive_max_processes, log_archive_min_succeed_dest, log_archive_trace, log_buffer, log_checkpoint_interval, log_checkpoint_timeout, log_checkpoints_to_alert, log_file_name_convert, log_redo_prioritization, recovery_parallelism, redo_generation_kbps_max, redo_transport_user, standby_db_preserve_states, standby_file_management, standby_parse_limit_seconds, standby_pdb_source_file_dblink, standby_pdb_source_file_directory
NLS / globalization17nls_calendar, nls_comp, nls_currency, nls_date_format, nls_date_language, nls_dual_currency, nls_iso_currency, nls_language, nls_length_semantics, nls_nchar_conv_excp, nls_numeric_characters, nls_sort, nls_territory, nls_time_format, nls_time_tz_format, nls_timestamp_format, nls_timestamp_tz_format
In-Memory17inmemory_adg_enabled, inmemory_automatic_level, inmemory_clause_default, inmemory_deep_vectorization, inmemory_expressions_usage, inmemory_force, inmemory_graph_algorithm_execution, inmemory_max_populate_servers, inmemory_optimized_arithmetic, inmemory_optimized_date, inmemory_prefer_xmem_memcompress, inmemory_prefer_xmem_priority, inmemory_query, inmemory_size, inmemory_trickle_repopulate_servers_percent, inmemory_virtual_columns, inmemory_xmem_size
AI Vector Search3vector_index_neighbor_graph_reload, vector_memory_size, vector_query_capture
Security / audit29allow_global_dblinks, allow_group_access_to_sga, allow_legacy_reco_protocol, allow_rowid_column_type, allow_weak_crypto, audit_file_dest, audit_sys_operations, audit_syslog_level, audit_trail, encrypt_new_tablespaces, ldap_directory_access, ldap_directory_sysauth, ofs_threads, os_authent_prefix, os_roles, outbound_dblink_protocols, remote_login_passwordfile, resource_limit, sec_max_failed_login_attempts, sec_protocol_error_further_action, sec_protocol_error_trace_action, sec_return_server_release_banner, sql92_security, tde_configuration, tde_key_cache, unified_audit_common_systemlog, unified_audit_systemlog, unified_audit_trail_exclude_columns, wallet_root
Multitenant15cdb_cluster, cdb_cluster_name, common_user_prefix, enable_pluggable_database, max_idle_blocker_time, max_idle_time, max_iops, max_mbps, max_pdbs, pdb_file_name_convert, pdb_lockdown, pdb_os_credential, pdb_tde_key_transport_on_rekey, pdb_template, target_pdbs
RAC / instance11cluster_database, cluster_interconnects, gcs_server_processes, instance_abort_delay_time, instance_groups, instance_mode, instance_name, instance_number, instance_type, thread, threaded_execution
ASM7asm_diskgroups, asm_diskstring, asm_io_processes, asm_power_limit, asm_preferred_read_failure_groups, asm_unified_audit_destination, asm_unified_audit_level
Diagnostics / manageability18awr_pdb_autoflush_enabled, awr_pdb_max_parallel_slaves, awr_snapshot_time_offset, background_core_dump, background_dump_dest, control_management_pack_access, core_dump_dest, diagnostic_dest, diagnostics_control, event, max_dump_file_size, statistics_level, timed_os_statistics, timed_statistics, trace_enabled, tracefile_content_classification, tracefile_identifier, user_dump_dest
Database / storage / undo37compatible, control_file_record_keep_time, control_files, db_big_table_cache_percent_target, db_block_checking, db_block_checksum, db_block_size, db_create_file_dest, db_create_online_log_dest_1, db_create_online_log_dest_2, db_create_online_log_dest_3, db_create_online_log_dest_4, db_create_online_log_dest_5, db_domain, db_file_multiblock_read_count, db_file_name_convert, db_files, db_flash_cache_file, db_flashback_log_dest, db_flashback_log_dest_size, db_flashback_retention_target, db_index_compression_inheritance, db_name, db_performance_profile, db_securefile, db_ultra_safe, db_unrecoverable_scn_tracking, db_writer_processes, dml_locks, job_queue_processes, processes, sessions, transactions, transactions_per_rollback_segment, undo_management, undo_retention, undo_tablespace
Network / connections10connection_brokers, dispatchers, forward_listener, listener_networks, local_listener, max_shared_servers, remote_listener, service_names, shared_server_sessions, shared_servers
Other210adg_account_info_tracking, adg_redirect_dml, alert_log_max_size, approx_for_aggregation, approx_for_count_distinct, approx_for_percentile, aq_tm_processes, auto_start_pdb_services, autotask_max_active_pdbs, backup_tape_io_slaves, bitmap_merge_area_size, blank_trimming, blockchain_table_max_no_drop, blockchain_table_retention_threshold, calendar_fiscal_year_start, cell_offload_compaction, cell_offload_decryption, cell_offload_parameters, cell_offload_plan_display, cell_offload_processing, cell_offloadgroup_name, circuits, client_prefetch_rows, client_result_cache_lag, client_result_cache_size, client_statistics_level, clonedb, clonedb_dir, cloud_table_commit_threshold, commit_logging, commit_point_strength, commit_wait, commit_write, container_data, containers_parallel_degree, cpu_count, cpu_min_count, create_bitmap_area_size, create_stored_outlines, data_guard_max_io_time, data_guard_max_longio_time, data_guard_sync_latency, data_transfer_cache_size, datalake_accelerator_config, dbfips_140, dbnest_enable, dbnest_pdb_fs_conf, dbwr_io_slaves, ddl_lock_timeout, debug_log_max_size, default_credential, default_sharing, deferred_segment_creation, directory_prefixes_allowed, disable_pdb_feature, disk_asynch_io, distributed_lock_timeout, dnfs_batch_size, drcp_connection_limit, drcp_dedicated_opt, dst_upgrade_insert_conv, enable_automatic_maintenance_pdb, enable_ddl_logging, enable_dnfs_dispatcher, enable_goldengate_replication, enable_imc_with_mira, enable_per_pdb_drcp, enabled_pdbs_on_standby, error_message_details, external_keystore_credential_location, file_mapping, fileio_network_adapters, filesystemio_options, fixed_date, global_names, global_txn_processes, group_by_position_enabled, heartbeat_batch_size, heat_map, hi_shared_memory_address, hs_autoregister, http_proxy, hybrid_read_only, identity_provider_config, identity_provider_oauth_config, identity_provider_type, ifile, ignore_session_set_param_errors, instant_restore, iorm_limit_policy, ipddb_enable, java_jit_enabled, java_max_sessionspace_size, java_restrict, java_soft_sessionspace_limit, json_behavior, json_expression_check, kafka_config_file, license_max_sessions, license_max_users, license_sessions_warning, load_without_compile, lob_signature_enable, lock_name_space, lockdown_errors, lockfree_reservation, long_module_action, main_workload_type, mandatory_user_profile, max_auth_servers, max_columns, max_datapump_jobs_per_pdb, max_datapump_parallel_per_job, max_dispatchers, max_saga_duration, max_string_size, memoptimize_pool_size, memoptimize_write_area_size, memoptimize_writes, mfa_duo_api_host, mfa_oma_iam_domain_url, mfa_sender_email_displayname, mfa_sender_email_id, mfa_smtp_host, mfa_smtp_port, min_auth_servers, mle_prog_languages, multishard_query_data_consistency, multishard_query_partial_results, native_blockchain_features, noncdb_compatible, object_cache_max_size_percent, object_cache_optimal_size, olap_page_pool_size, one_step_plugin_for_pdb_with_tde, open_links, open_links_per_instance, paranoid_concurrency_mode, pdc_file_size, permit_92_wrap_format, pkcs11_library_location, pki_cert_auth_method, plscope_settings, pmem_filestore, pre_page_sga, priority_txns_high_wait_target, priority_txns_medium_wait_target, priority_txns_mode, private_temp_table_prefix, processor_group_name, rdbms_server_dn, read_only, read_only_open_delayed, recyclebin, remote_dependencies_mode, remote_os_roles, remote_recovery_file_dest, replication_dependency_tracking, resource_manage_goldengate, resource_manager_cpu_allocation, resource_manager_cpu_scope, resource_manager_plan, resumable_timeout, rman_restore_file_storage_metadata, rollback_segments, row_movement_default, run_addm_for_awr_report, saga_hist_retention, saga_msg_framework, scheduler_follow_pdbtz, serial_reuse, session_exit_on_package_state_error, session_max_open_files, shadow_core_dump, shard_apply_max_memory_size, shard_enable_raft_follower_read, shard_queries_restricted_by_key, shard_raft_logfile_size, shared_memory_address, shrd_dupl_table_refresh_rate, skip_unusable_indexes, smtp_out_server, soda_behavior, spatial_vector_acceleration, spfile, sqltune_category, ssl_wallet, statement_redirect_service, sysdate_at_dbtimezone, tablespace_encryption, tablespace_encryption_default_algorithm, tablespace_encryption_default_cipher_mode, tape_asynch_io, temp_undo_enabled, time_at_dbtimezone, timezone_version_upgrade_integrity, timezone_version_upgrade_online, transaction_recovery, true_cache, true_cache_config, txn_auto_rollback_high_priority_wait_target, txn_auto_rollback_medium_priority_wait_target, txn_auto_rollback_mode, txn_priority, uniform_log_timestamp_format, use_dedicated_broker, xml_client_side_decoding, xml_db_events, xml_handling_of_invalid_chars, xml_params

A.2 All 568 documented parameters

NameTypeValueAt default?LevelPDBRAC inst.FlagsDescription
adg_account_info_trackingStringLOCALyesSTATICYNADG user account info tracked in standby(LOCAL) or in Primary(GLOBAL)
adg_redirect_dmlBooleanFALSEyesSYSTEM imm.YYEnable DML Redirection from ADG
alert_log_max_sizeBig integer1048576000yesSYSTEM imm.NYAlert-log maximum total size
allow_global_dblinksBooleanFALSEyesSYSTEM imm.NYLDAP lookup for DBLINKS
allow_group_access_to_sgaBooleanFALSEyesSTATICNNAllow read access for SGA to users of Oracle owner group
allow_legacy_reco_protocolBooleanTRUEyesSTATICYNShould the database allow the legacy RECO protocol
allow_rowid_column_typeBooleanFALSEyesSESSIONYYAllow creation of rowid column
allow_weak_cryptoBooleanTRUEyesSYSTEM imm.YYAllow weak crypto usage in DBMS_CRYPTO
approx_for_aggregationBooleanFALSEyesSESSIONYYReplace exact aggregation with approximate aggregation
approx_for_count_distinctBooleanFALSEyesSESSIONYYReplace count distinct with approx_count_distinct
approx_for_percentileStringNONEyesSESSIONYYReplace percentile_* with approx_percentile
aq_tm_processesInteger1yesSYSTEM imm.YYnumber of AQ Time Managers to start
archive_lag_targetInteger0yesSYSTEM imm.NYMaximum number of seconds of redos the standby could lose
asm_diskgroupsStringyesSYSTEM imm.NYdisk groups to mount automatically
asm_diskstringStringyesSESSIONYYdisk set locations for discovery
asm_io_processesInteger20yesSYSTEM imm.NYnumber of I/O processes per domain in the ASM IOSERVER instance
asm_power_limitInteger1yesSESSIONNYnumber of parallel relocations for disk rebalancing
asm_preferred_read_failure_groupsStringyesSYSTEM imm.NYdeprecatedpreferred read failure groups
asm_unified_audit_destinationStringSYSTEMLOGyesSTATICNNConfiguring ASM Unified Audit Destination
asm_unified_audit_levelStringBASICyesSTATICNNConfiguring ASM Unified Audit Level
audit_file_destString/u01/app/oracle/product/23.26.3/dbhome_1/rdbms/audityesSYSTEM def.NYdeprecatedDirectory in which auditing files are to reside
audit_sys_operationsBooleanFALSEyesSTATICNNdeprecatedenable sys auditing
audit_syslog_levelStringyesSTATICNNdeprecatedSyslog facility and level
audit_trailStringNONEyesSTATICNNdeprecatedenable system auditing
auto_start_pdb_servicesBooleanFALSEyesSYSTEM imm.YYAutomatically start all PDB services on PDB Open
autotask_max_active_pdbsInteger2yesSYSTEM imm.NYSetting for Autotask Maximum Maintenance PDBs
awr_pdb_autoflush_enabledBooleanTRUEyesSYSTEM imm.YYEnable/Disable AWR automatic PDB flushing
awr_pdb_max_parallel_slavesInteger5no (was 10)SYSTEM imm.NYmaximum concurrent AWR PDB MMON slaves per instance
awr_snapshot_time_offsetInteger0yesSYSTEM imm.NYSetting for AWR Snapshot Time Offset
background_core_dumpStringpartialyesSYSTEM imm.NYCore Size for Background Processes
background_dump_destString/u01/app/oracle/product/23.26.3/dbhome_1/rdbms/logyesSYSTEM imm.NYdeprecatedDetached process dump directory
backup_tape_io_slavesBooleanFALSEyesSYSTEM def.NYBACKUP Tape I/O slaves
bitmap_merge_area_sizeInteger1048576yesSTATICYNmaximum memory allow for BITMAP MERGE
blank_trimmingBooleanFALSEyesSTATICYNblank trimming semantics parameter
blockchain_table_max_no_dropIntegeryesSYSTEM imm.YYmaximum idle retention minutes for blockchain tables
blockchain_table_retention_thresholdInteger16yesSYSTEM imm.YYmaximum retention without TABLE RETENTION privilege
buffer_pool_keepStringyesSTATICNNdeprecatedNumber of database blocks/latches in keep buffer pool
buffer_pool_recycleStringyesSTATICNNdeprecatedNumber of database blocks/latches in recycle buffer pool
calendar_fiscal_year_startStringyesSESSIONYYStart of fiscal year
cdb_clusterBooleanFALSEyesSTATICNNif TRUE startup in CDB Cluster mode
cdb_cluster_nameStringyesSTATICNNCDB Cluster name
cell_offload_compactionStringADAPTIVEyesSESSIONYYCell packet compaction strategy
cell_offload_decryptionBooleanTRUEyesSYSTEM imm.YYenable SQL processing offload of encrypted data to cells
cell_offload_parametersStringyesSESSIONYYAdditional cell offload parameters
cell_offload_plan_displayStringAUTOyesSESSIONYYCell offload explain plan display
cell_offload_processingBooleanTRUEyesSESSIONYYenable SQL processing offload to cells
cell_offloadgroup_nameStringyesSESSIONYYSet the offload group name
circuitsIntegeryesSYSTEM imm.NYmax number of circuits
client_prefetch_rowsInteger0yesSESSIONYYClient prefetch rows value
client_result_cache_lagBig integer3000yesSTATICYNclient result cache maximum lag in milliseconds
client_result_cache_sizeBig integer0yesSTATICYNclient result cache max size in bytes
client_statistics_levelStringTYPICALyesSYSTEM def.YYClient Statistics Level
clonedbBooleanFALSEyesSTATICNNclone database
clonedb_dirStringyesSTATICNNCloneDB Directory
cloud_table_commit_thresholdInteger0yesSESSIONYYexport threshold (row count) for buffered cloud table
cluster_databaseBooleanFALSEyesSTATICNNbasicif TRUE startup in cluster database mode
cluster_interconnectsStringyesSTATICNNinterconnects for RAC use
commit_loggingStringyesSESSIONYYtransaction commit log write behaviour
commit_point_strengthInteger1yesSTATICYNBias this node has toward not preparing in a two-phase commit
commit_waitStringyesSESSIONYYtransaction commit log wait behaviour
commit_writeStringyesSESSIONYYdeprecatedtransaction commit log write behaviour
common_user_prefixStringyesSTATICYNEnforce restriction on a prefix of a Common User/Role/Profile name
compatibleString23.6.0no (was 23.6.0)SYSTEM imm.NYbasicDatabase will be completely compatible with this software version
connection_brokersString((TYPE=DEDICATED)(BROKERS=2)(CONNECTIONS=2000)), ((TYPE=EMO…yesSYSTEM imm.NYconnection brokers specification
container_dataStringALLyesSESSIONYNwhich containers should data be returned from?
containers_parallel_degreeInteger65535yesSESSIONYYParallel degree for a CONTAINERS() query
control_file_record_keep_timeInteger7yesSYSTEM imm.NYcontrol file record keep time in days
control_filesString/u01/app/oracle/oradata/ORCL23/control01.ctl, /u01/app/orac…no (was ?=/dbs/cntrl@.dbf)STATICNNbasiccontrol file names list
control_management_pack_accessStringDIAGNOSTIC+TUNINGyesSYSTEM imm.NYdeclares which manageability packs are enabled
core_dump_destString/u01/app/oracle/diag/rdbms/orcl23/orcl23/cdumpyesSYSTEM imm.NYCore dump directory
cpu_countString4yesSYSTEM imm.YYmaximum number of CPUs
cpu_min_countString4yesSYSTEM imm.YYminimum number of CPUs required
create_bitmap_area_sizeInteger8388608yesSTATICYNsize of create bitmap buffer for bitmap index
create_stored_outlinesStringyesSESSIONYYcreate stored outlines for DML statements
cursor_bind_capture_destinationStringmemory+diskyesSESSIONYYAllowed destination for captured bind variables
cursor_invalidationStringIMMEDIATEyesSESSIONYYdefault for DDL cursor invalidation semantics
cursor_sharingStringEXACTyesSESSIONYYcursor sharing mode
cursor_space_for_timeBooleanFALSEyesSTATICNNdeprecateduse more memory in order to get faster execution
data_guard_max_io_timeInteger240yesSYSTEM imm.NYmaximum I/O time before process considered hung
data_guard_max_longio_timeInteger240yesSYSTEM imm.NYmaximum long I/O time before process considered hung
data_guard_sync_latencyInteger0yesSYSTEM imm.NYData Guard SYNC latency
data_transfer_cache_sizeBig integer0yesSYSTEM imm.NYSize of data transfer cache
datalake_accelerator_configStringyesSESSIONYYData Lake Accelerator configuration map
db_16k_cache_sizeBig integer0yesSYSTEM imm.NYSize of cache for 16K buffers
db_2k_cache_sizeBig integer0yesSYSTEM imm.NYSize of cache for 2K buffers
db_32k_cache_sizeBig integer0yesSYSTEM imm.NYSize of cache for 32K buffers
db_4k_cache_sizeBig integer0yesSYSTEM imm.NYSize of cache for 4K buffers
db_8k_cache_sizeBig integer0yesSYSTEM imm.NYSize of cache for 8K buffers
db_big_table_cache_percent_targetString0yesSYSTEM imm.NYBig table cache target size in percentage
db_block_buffersInteger0yesSTATICNNdeprecatedNumber of database blocks cached in memory
db_block_checkingStringFALSEyesSYSTEM imm.YYheader checking and data and index block checking
db_block_checksumStringTYPICALyesSYSTEM imm.NYstore checksum in db blocks and check during reads
db_block_sizeInteger8192no (was 8192)STATICNNbasicSize of database block in bytes
db_cache_adviceStringONyesSYSTEM imm.NYBuffer cache sizing advisory
db_cache_sizeBig integer0yesSYSTEM imm.YYSize of DEFAULT buffer pool for standard block size buffers
db_create_file_destStringyesSESSIONYYbasicdefault database location
db_create_online_log_dest_1StringyesSESSIONYYbasiconline log/controlfile destination #1
db_create_online_log_dest_2StringyesSESSIONYYbasiconline log/controlfile destination #2
db_create_online_log_dest_3StringyesSESSIONYYonline log/controlfile destination #3
db_create_online_log_dest_4StringyesSESSIONYYonline log/controlfile destination #4
db_create_online_log_dest_5StringyesSESSIONYYonline log/controlfile destination #5
db_domainStringno (was )STATICYNbasicdirectory part of global database name stored with CREATE DATABASE
db_file_multiblock_read_countInteger128yesSESSIONYYdb block to be read each IO
db_file_name_convertStringyesSESSIONYYdatafile name convert patterns and strings for standby/clone db
db_filesInteger200yesSTATICYNmax allowable # db files
db_flash_cache_fileStringyesSYSTEM imm.NYflash cache file for default block size
db_flash_cache_sizeBig integer0yesSYSTEM imm.NYflash cache size for db_flash_cache_file
db_flashback_log_destStringyesSYSTEM imm.NNSeparate creation directory for flashback database logs
db_flashback_log_dest_sizeBig integer0yesSYSTEM imm.NNSize limit of separate creation directory for flashback database logs
db_flashback_retention_targetInteger1440yesSYSTEM imm.NNMaximum Flashback Database log retention time in minutes.
db_index_compression_inheritanceStringNONEyesSESSIONYYoptions for table or tablespace level compression inheritance
db_keep_cache_sizeBig integer0yesSYSTEM imm.NYSize of KEEP buffer pool for standard block size buffers
db_lost_write_protectStringAUTOyesSYSTEM imm.YYenable lost write detection
db_nameStringorcl23no (was NONE)STATICNNbasicdatabase name specified in CREATE DATABASE
db_performance_profileStringyesSYSTEM imm.YYDatabase performance category
db_recovery_auto_rekeyStringONyesSYSTEM imm.NYenable automatic tablespace rekey recovery
db_recovery_file_destString/u01/frano (was NONE)SYSTEM imm.NNbasicdefault database recovery file location
db_recovery_file_dest_sizeBig integer21474836480no (was 0)SYSTEM imm.NNbasicdatabase recovery files size limit
db_recycle_cache_sizeBig integer0yesSYSTEM imm.NYSize of RECYCLE buffer pool for standard block size buffers
db_securefileStringPREFERREDyesSESSIONYYpermit securefile storage during lob creation
db_ultra_safeStringOFFyesSTATICNNSets defaults for other parameters that control protection levels
db_unique_nameStringorcl23yesSTATICNNbasicDatabase Unique Name
db_unrecoverable_scn_trackingBooleanTRUEyesSESSIONYYTrack nologging SCN in controlfile
db_writer_processesInteger1yesSTATICNNnumber of background database writer processes to start
DBFIPS_140BooleanFALSEyesSTATICNNEnable use of crypographic libraries in FIPS mode, public
dbnest_enableStringNONEyesSTATICNNdatabase Nest enable
dbnest_pdb_fs_confStringyesSTATICNNPDB Filesystem configuration
dbwr_io_slavesInteger0yesSTATICNNDBWR I/O slaves
ddl_lock_timeoutInteger0yesSESSIONYYtimeout to restrict the time that ddls wait for dml lock
debug_log_max_sizeBig integer1048576000yesSYSTEM imm.NYDebug-log maximum total size
default_credentialStringyesSESSIONNNdefault credential session parameter
default_sharingStringmetadatayesSESSIONYYDefault sharing clause
deferred_segment_creationBooleanTRUEyesSESSIONYYdefer segment creation to first insert
dg_broker_config_file1String/u01/app/oracle/product/23.26.3/dbhome_1/dbs/dr1orcl23.datyesSYSTEM imm.NYdata guard broker configuration file #1
dg_broker_config_file2String/u01/app/oracle/product/23.26.3/dbhome_1/dbs/dr2orcl23.datyesSYSTEM imm.NYdata guard broker configuration file #2
dg_broker_startBooleanFALSEyesSYSTEM imm.NNstart Data Guard broker (DMON process)
diagnostic_destString/u01/app/oracleno (was ?#/log)SYSTEM imm.NYdiagnostic base directory
diagnostics_controlStringIGNOREyesSYSTEM imm.NYcontrols response when 'enabling diagnostics' privilege is absent
directory_prefixes_allowedStringyesSYSTEM imm.NYAllowed prefixes for directory paths created inside the PDB
disable_pdb_featureBig integer0yesSYSTEM imm.NYDisable features
disk_asynch_ioBooleanTRUEyesSTATICNNUse asynch I/O for random access devices
dispatchersString(PROTOCOL=TCP) (SERVICE=orcl23XDB)no (was )SYSTEM imm.NYspecifications of dispatchers
distributed_lock_timeoutInteger60yesSYSTEM imm.YYnumber of seconds a distributed transaction waits for a lock
dml_locksInteger2216yesSTATICNNdml locks - one for each table modified in a transaction
dnfs_batch_sizeInteger4096yesSTATICNNMax number of dNFS asynch I/O requests queued per session
drcp_connection_limitInteger0yesSYSTEM imm.YYDRCP connection limit
drcp_dedicated_optStringNOyesSYSTEM imm.YYTurn on/off dedicated optimization for DRCP
dst_upgrade_insert_convBooleanTRUEyesSESSIONYYEnables/Disables internal conversions during DST upgrade
enable_automatic_maintenance_pdbBooleanTRUEyesSYSTEM imm.YYEnable/Disable Automated Maintenance for Non-Root PDB
enable_ddl_loggingBooleanFALSEyesSESSIONYYenable ddl logging
enable_dnfs_dispatcherBooleanFALSEyesSTATICNNEnable DNFS Dispatcher
enable_goldengate_replicationBooleanFALSEyesSYSTEM imm.YNgoldengate replication enabled
enable_imc_with_miraBooleanFALSEyesSYSTEM imm.NYenable IMC with multi instance redo apply
enable_per_pdb_drcpBooleanFALSEyesSTATICNNTurn on/off per PDB DRCP
enable_pluggable_databaseBooleanTRUEno (was TRUE)STATICNNEnable Pluggable Database
enabled_PDBs_on_standbyString*yesSYSTEM imm.NYList of Enabled PDB patterns
encrypt_new_tablespacesStringCLOUD_ONLYyesSYSTEM imm.YYdeprecatedwhether to encrypt newly created tablespaces
error_message_detailsStringONyesSESSIONYYprint additional explanatory error details
eventStringyesSTATICNNdebug event control - default null string
external_keystore_credential_locationStringyesSTATICNNexternal keystore credential location
fal_clientStringyesSYSTEM imm.NYFAL client
fal_serverStringyesSYSTEM imm.NYFAL server list
fast_start_io_targetInteger0yesSYSTEM imm.NYdeprecatedUpper bound on recovery reads
fast_start_mttr_targetInteger0yesSYSTEM imm.NYMTTR target in seconds
fast_start_parallel_rollbackStringLOWyesSYSTEM imm.YYmax number of parallel recovery slaves that may be used
file_mappingBooleanFALSEyesSYSTEM imm.NYenable file mapping
fileio_network_adaptersStringyesSTATICNNNetwork Adapters for File I/O
filesystemio_optionsStringnoneyesSTATICNNIO operations on filesystem files
fixed_dateStringyesSYSTEM imm.YYfixed SYSDATE value
forward_listenerStringyesSYSTEM imm.YYforward listener
gcs_server_processesInteger0yesSTATICNNnumber of background gcs server processes to start
global_namesBooleanFALSEyesSESSIONYYenforce that database links have same name as remote database
global_txn_processesInteger1yesSYSTEM imm.NYnumber of background global transaction processes to start
group_by_position_enabledBooleanFALSEyesSESSIONYYenable/disable group by position
hash_area_sizeInteger131072yesSESSIONNNsize of in-memory hash work area
heartbeat_batch_sizeInteger5yesSYSTEM imm.YYNumber of heartbeats to be sent in a batch
heat_mapStringOFFyesSESSIONYYILM Heatmap Tracking
hi_shared_memory_addressInteger0yesSTATICNNSGA starting address (high order 32-bits on 64-bit platforms)
hs_autoregisterBooleanTRUEyesSYSTEM imm.NYenable automatic server DD updates in HS agent self-registration
http_proxyStringyesSYSTEM imm.NYhttp_proxy
hybrid_read_onlyBooleanFALSEyesSYSTEM imm.YYHybrid read only mode allows CDB common user to patch the PDB
identity_provider_configStringyesSYSTEM imm.YYIdentity Provider Configuration
identity_provider_oauth_configStringyesSYSTEM imm.YYIdentity Provider OAuth Config
identity_provider_typeStringNONEyesSYSTEM imm.YYIdentity Provider Type
ifileParameter fileyesSTATICNNinclude file in init.ora
ignore_session_set_param_errorsStringyesSESSIONYYIgnore errors during alter session param set
inmemory_adg_enabledBooleanTRUEyesSYSTEM imm.NYEnable IMC support on ADG
inmemory_automatic_levelStringOFFyesSYSTEM imm.YYEnable Automatic In-Memory management
inmemory_clause_defaultStringyesSESSIONYYDefault in-memory clause for new tables
inmemory_deep_vectorizationBooleanTRUEyesSESSIONYYIn-Memory Deep Vectorization Enabled
inmemory_expressions_usageStringENABLEyesSYSTEM imm.YYControls which In-Memory Expressions are populated in-memory
inmemory_forceStringDEFAULTyesSYSTEM imm.YYForce tables to be in-memory or not
inmemory_graph_algorithm_executionStringDEFAULTyesSESSIONYYControls the fall-back action of graph algorithm execution if in-memory execution is not possible
inmemory_max_populate_serversInteger0yesSYSTEM imm.NYmaximum inmemory populate servers
inmemory_optimized_arithmeticStringDISABLEyesSYSTEM imm.YYControls whether or not DSBs are stored in-memory
inmemory_optimized_dateStringDISABLEyesSESSIONYYEnables feature to accelerate date queries
inmemory_prefer_xmem_memcompressStringyesSYSTEM imm.YYPrefer to store tables with given memcompress levels in xmem
inmemory_prefer_xmem_priorityStringyesSYSTEM imm.YYPrefer to store tables with given priority levels in xmem
inmemory_queryStringENABLEyesSESSIONYYSpecifies whether in-memory queries are allowed
inmemory_sizeBig integer0yesSYSTEM imm.YYsize in bytes of in-memory area
inmemory_trickle_repopulate_servers_percentInteger1yesSYSTEM imm.NYinmemory trickle repopulate servers percent
inmemory_virtual_columnsStringMANUALyesSYSTEM imm.YYControls which user-defined virtual columns are stored in-memory
inmemory_xmem_sizeBig integer0yesSYSTEM imm.YYsize in bytes of in-memory xmem area
instance_abort_delay_timeInteger0yesSYSTEM imm.NYtime to delay an internal initiated abort (in seconds)
instance_groupsStringyesSTATICNNdeprecatedlist of instance group names
instance_modeStringREAD-WRITEyesSTATICNNindicates whether the instance read-only or read-write or read-mostly
instance_nameStringorcl23yesSTATICNNinstance name supported by the instance
instance_numberInteger0yesSTATICNNbasicinstance number
instance_typeStringRDBMSyesSTATICNNtype of instance to be executed
instant_restoreBooleanFALSEyesSTATICNNinstant repopulation of datafiles
iorm_limit_policyStringRM_PLANyesSYSTEM imm.NYPolicy used to compute Exadata IORM limit
ipddb_enableBooleanFALSEyesSYSTEM imm.NYEnable IPD/DB data collection
java_jit_enabledBooleanTRUEyesSESSIONYYJava VM JIT enabled
java_max_sessionspace_sizeInteger0yesSTATICNNmax allowed size in bytes of a Java sessionspace
java_pool_sizeBig integer0yesSYSTEM imm.NYsize in bytes of java pool
java_restrictStringnoneyesSTATICNNRestrict Java VM Access
java_soft_sessionspace_limitInteger0yesSTATICNNwarning limit on size in bytes of a Java sessionspace
job_queue_processesInteger8no (was 4000)SYSTEM imm.YYmaximum number of job queue slave processes
json_behaviorStringyesSESSIONNNcontrol json behaviors
json_expression_checkStringoffyesSESSIONYYenable/disable JSON query statement check
kafka_config_fileStringyesSYSTEM imm.YYKSR pub/sub external message bus(KGMPS) CONFIGuration file
large_pool_sizeBig integer0yesSYSTEM imm.NYsize in bytes of large pool
ldap_directory_accessStringNONEyesSYSTEM imm.YYRDBMS's LDAP access option
ldap_directory_sysauthStringnoyesSTATICYNbasicOID usage parameter
license_max_sessionsInteger0yesSYSTEM imm.NYmaximum number of non-system user sessions allowed
license_max_usersInteger0yesSYSTEM imm.NYmaximum number of named users that can be created in the database
license_sessions_warningInteger0yesSYSTEM imm.NYwarning level for number of non-system user sessions
listener_networksStringyesSYSTEM imm.YYlistener registration networks
load_without_compileStringNONEyesSESSIONYYLoad PL/SQL or Database objects without compilation
lob_signature_enableBooleanFALSEyesSYSTEM imm.YYenable lob signature
local_listenerStringLISTENER_ORCL23no (was )SYSTEM imm.YYlocal listener
lock_name_spaceStringyesSTATICNNdeprecatedlock name space used for generating lock names for standby/clone database
lock_sgaBooleanFALSEyesSTATICNNLock entire SGA in physical memory
lockdown_errorsStringRAISEyesSESSIONYYMode to ignore or raise PDB lockdown error
lockfree_reservationStringONyesSYSTEM imm.YYenable/disable lockfree reservation
log_archive_configStringyesSYSTEM imm.NYlog archive config
log_archive_destStringyesSYSTEM imm.NYarchival destination text string
log_archive_dest_1StringyesSESSIONNYbasicarchival destination #1 text string
log_archive_dest_10StringyesSESSIONNYarchival destination #10 text string
log_archive_dest_11StringyesSESSIONNYarchival destination #11 text string
log_archive_dest_12StringyesSESSIONNYarchival destination #12 text string
log_archive_dest_13StringyesSESSIONNYarchival destination #13 text string
log_archive_dest_14StringyesSESSIONNYarchival destination #14 text string
log_archive_dest_15StringyesSESSIONNYarchival destination #15 text string
log_archive_dest_16StringyesSESSIONNYarchival destination #16 text string
log_archive_dest_17StringyesSESSIONNYarchival destination #17 text string
log_archive_dest_18StringyesSESSIONNYarchival destination #18 text string
log_archive_dest_19StringyesSESSIONNYarchival destination #19 text string
log_archive_dest_2StringyesSESSIONNYbasicarchival destination #2 text string
log_archive_dest_20StringyesSESSIONNYarchival destination #20 text string
log_archive_dest_21StringyesSESSIONNYarchival destination #21 text string
log_archive_dest_22StringyesSESSIONNYarchival destination #22 text string
log_archive_dest_23StringyesSESSIONNYarchival destination #23 text string
log_archive_dest_24StringyesSESSIONNYarchival destination #24 text string
log_archive_dest_25StringyesSESSIONNYarchival destination #25 text string
log_archive_dest_26StringyesSESSIONNYarchival destination #26 text string
log_archive_dest_27StringyesSESSIONNYarchival destination #27 text string
log_archive_dest_28StringyesSESSIONNYarchival destination #28 text string
log_archive_dest_29StringyesSESSIONNYarchival destination #29 text string
log_archive_dest_3StringyesSESSIONNYarchival destination #3 text string
log_archive_dest_30StringyesSESSIONNYarchival destination #30 text string
log_archive_dest_31StringyesSESSIONNYarchival destination #31 text string
log_archive_dest_4StringyesSESSIONNYarchival destination #4 text string
log_archive_dest_5StringyesSESSIONNYarchival destination #5 text string
log_archive_dest_6StringyesSESSIONNYarchival destination #6 text string
log_archive_dest_7StringyesSESSIONNYarchival destination #7 text string
log_archive_dest_8StringyesSESSIONNYarchival destination #8 text string
log_archive_dest_9StringyesSESSIONNYarchival destination #9 text string
log_archive_dest_state_1StringenableyesSESSIONNYbasicarchival destination #1 state text string
log_archive_dest_state_10StringenableyesSESSIONNYarchival destination #10 state text string
log_archive_dest_state_11StringenableyesSESSIONNYarchival destination #11 state text string
log_archive_dest_state_12StringenableyesSESSIONNYarchival destination #12 state text string
log_archive_dest_state_13StringenableyesSESSIONNYarchival destination #13 state text string
log_archive_dest_state_14StringenableyesSESSIONNYarchival destination #14 state text string
log_archive_dest_state_15StringenableyesSESSIONNYarchival destination #15 state text string
log_archive_dest_state_16StringenableyesSESSIONNYarchival destination #16 state text string
log_archive_dest_state_17StringenableyesSESSIONNYarchival destination #17 state text string
log_archive_dest_state_18StringenableyesSESSIONNYarchival destination #18 state text string
log_archive_dest_state_19StringenableyesSESSIONNYarchival destination #19 state text string
log_archive_dest_state_2StringenableyesSESSIONNYbasicarchival destination #2 state text string
log_archive_dest_state_20StringenableyesSESSIONNYarchival destination #20 state text string
log_archive_dest_state_21StringenableyesSESSIONNYarchival destination #21 state text string
log_archive_dest_state_22StringenableyesSESSIONNYarchival destination #22 state text string
log_archive_dest_state_23StringenableyesSESSIONNYarchival destination #23 state text string
log_archive_dest_state_24StringenableyesSESSIONNYarchival destination #24 state text string
log_archive_dest_state_25StringenableyesSESSIONNYarchival destination #25 state text string
log_archive_dest_state_26StringenableyesSESSIONNYarchival destination #26 state text string
log_archive_dest_state_27StringenableyesSESSIONNYarchival destination #27 state text string
log_archive_dest_state_28StringenableyesSESSIONNYarchival destination #28 state text string
log_archive_dest_state_29StringenableyesSESSIONNYarchival destination #29 state text string
log_archive_dest_state_3StringenableyesSESSIONNYarchival destination #3 state text string
log_archive_dest_state_30StringenableyesSESSIONNYarchival destination #30 state text string
log_archive_dest_state_31StringenableyesSESSIONNYarchival destination #31 state text string
log_archive_dest_state_4StringenableyesSESSIONNYarchival destination #4 state text string
log_archive_dest_state_5StringenableyesSESSIONNYarchival destination #5 state text string
log_archive_dest_state_6StringenableyesSESSIONNYarchival destination #6 state text string
log_archive_dest_state_7StringenableyesSESSIONNYarchival destination #7 state text string
log_archive_dest_state_8StringenableyesSESSIONNYarchival destination #8 state text string
log_archive_dest_state_9StringenableyesSESSIONNYarchival destination #9 state text string
log_archive_duplex_destStringyesSYSTEM imm.NYduplex archival destination text string
log_archive_formatString%t_%s_%r.dbfyesSTATICNNarchival destination format
log_archive_max_processesInteger4yesSYSTEM imm.NYmaximum number of active ARCH processes
log_archive_min_succeed_destInteger1yesSESSIONYYminimum number of archive destinations that must succeed
log_archive_traceInteger0yesSYSTEM imm.NYEstablish archive operation tracing level
log_bufferBig integer8486912yesSTATICNNredo circular buffer size
log_checkpoint_intervalInteger0yesSYSTEM imm.NY# redo blocks checkpoint threshold
log_checkpoint_timeoutInteger1800yesSYSTEM imm.NYMaximum time interval between checkpoints in seconds
log_checkpoints_to_alertBooleanFALSEyesSYSTEM imm.NYlog checkpoint begin/end to alert file
log_file_name_convertStringyesSYSTEM imm.NYlogfile name convert patterns and strings for standby/clone db
log_redo_prioritizationBooleanFALSEyesSYSTEM imm.NYenables prioritization of log buffer space for a session
long_module_actionBooleanTRUEyesSYSTEM imm.YYUse longer module and action
main_workload_typeStringOLTPyesSYSTEM imm.YYMain workload type
mandatory_user_profileStringyesSYSTEM imm.YYEnforce Mandatory Password Profile for multitenant database
max_auth_serversInteger25yesSYSTEM imm.YYMaximum size of auth pool
max_columnsStringSTANDARDyesSTATICYNmaximum number of columns allowed in table or view
max_datapump_jobs_per_pdbStringAUTOyesSYSTEM imm.YYmaximum number of concurrent Data Pump Jobs per PDB
max_datapump_parallel_per_jobStringAUTOyesSYSTEM imm.YYmaximum number of parallel processes per Data Pump Job
max_dispatchersIntegeryesSYSTEM imm.NYmax number of dispatchers
max_dump_file_sizeString1GyesSESSIONYYMaximum size (in bytes) of dump file
max_idle_blocker_timeInteger0yesSYSTEM imm.YYmaximum idle time for a blocking session in minutes
max_idle_timeInteger0yesSYSTEM imm.YYmaximum session idle time in minutes
max_iopsInteger0yesSYSTEM imm.YYMAX IO per second
max_mbpsInteger0yesSYSTEM imm.YYMAX MB per second
max_pdbsInteger254yesSYSTEM imm.YNmax number of pdbs allowed in CDB or Application ROOT
max_saga_durationInteger86400yesSYSTEM imm.NYdefault value for max saga duration
max_shared_serversIntegeryesSYSTEM imm.NYmax number of shared servers
max_string_sizeStringSTANDARDyesSYSTEM imm.YNcontrols maximum size of VARCHAR2, NVARCHAR2, and RAW types in SQL
memoptimize_pool_sizeBig integer0yesSYSTEM imm.NYSize of cache for imoltp buffers
memoptimize_write_area_sizeBig integer0yesSYSTEM imm.NYchanges memoptimize write area size
memoptimize_writesStringHINTyesSESSIONNNwrite data to IGA without memoptimize_write hint
memory_max_sizeBig integer0yesSTATICNNMaximum memory size
memory_max_targetBig integer0yesSTATICNNMax size for Memory Target
memory_sizeBig integer0yesSYSTEM imm.NYTarget memory size
memory_targetBig integer0yesSYSTEM imm.NYTarget size of Oracle SGA and PGA memory
mfa_duo_api_hostStringyesSYSTEM imm.YYMFA Duo API Host
mfa_oma_iam_domain_urlStringyesSYSTEM imm.YYMFA Oracle Mobile Authenticator IAM Domain Url
mfa_sender_email_displaynameStringyesSYSTEM imm.YYMFA Sender Email Displayname
mfa_sender_email_idStringyesSYSTEM imm.YYMFA Sender Email Id
mfa_smtp_hostStringyesSYSTEM imm.YYMFA SMTP Host
mfa_smtp_portInteger587yesSYSTEM imm.YYMFA SMTP Port
min_auth_serversInteger1yesSYSTEM imm.YYMinimum size of auth pool
mle_prog_languagesStringallyesSESSIONYYEnable Multilingual Engine
multishard_query_data_consistencyStringstrongyesSESSIONYYconsistency setting for multishard queries
multishard_query_partial_resultsStringnot allowedyesSESSIONYYenable partial results for multishard queries
native_blockchain_featuresStringyesSTATICYNNative block chain enable/disable
nls_calendarStringyesSESSIONYNNLS calendar system name
nls_compStringBINARYyesSESSIONYNNLS comparison
nls_currencyStringyesSESSIONYNNLS local currency symbol
nls_date_formatStringyesSESSIONYNNLS Oracle date format
nls_date_languageStringyesSESSIONYNNLS date language name
nls_dual_currencyStringyesSESSIONYNDual currency symbol
nls_iso_currencyStringyesSESSIONYNNLS ISO currency territory name
nls_languageStringAMERICANno (was AMERICAN)SESSIONYNbasicNLS language name
nls_length_semanticsStringBYTEyesSESSIONYYcreate columns using byte or char semantics by default
nls_nchar_conv_excpStringFALSEyesSESSIONYYNLS raise an exception instead of allowing implicit conversion
nls_numeric_charactersStringyesSESSIONYNNLS numeric characters
nls_sortStringyesSESSIONYNNLS linguistic definition name
nls_territoryStringAMERICAno (was AMERICA)SESSIONYNbasicNLS territory name
nls_time_formatStringyesSESSIONYNtime format
nls_time_tz_formatStringyesSESSIONYNtime with timezone format
nls_timestamp_formatStringyesSESSIONYNtime stamp format
nls_timestamp_tz_formatStringyesSESSIONYNtimestamp with timezone format
noncdb_compatibleBooleanFALSEyesSTATICNNNon-CDB Compatible
object_cache_max_size_percentInteger10yesSESSIONYYpercentage of maximum size over optimal of the user session's object cache
object_cache_optimal_sizeInteger51200000yesSESSIONYYoptimal size of the user session's object cache in bytes
ofs_threadsInteger4yesSYSTEM imm.NYNumber of OFS threads
olap_page_pool_sizeBig integer0yesSESSIONYYsize of the olap page pool in bytes
one_step_plugin_for_pdb_with_tdeBooleanFALSEyesSYSTEM imm.NYFacilitate one-step plugin for PDB with TDE encrypted data
open_cursorsInteger300no (was 50)SYSTEM imm.YYbasicmax # cursors per session
open_linksInteger4yesSTATICYNmax # open links per session
open_links_per_instanceInteger4yesSTATICNNmax # open links per instance
optimizer_adaptive_plansBooleanTRUEyesSESSIONYYcontrols all types of adaptive plans
optimizer_adaptive_reporting_onlyBooleanFALSEyesSESSIONYYuse reporting-only mode for adaptive optimizations
optimizer_adaptive_statisticsBooleanFALSEyesSESSIONYYcontrols all types of adaptive statistics
optimizer_capture_sql_plan_baselinesBooleanFALSEyesSESSIONYYautomatic capture of SQL plan baselines for repeatable statements
optimizer_capture_sql_quarantineBooleanFALSEyesSESSIONYYenable automatic creation/update of sql quarantine configuration
optimizer_cross_shard_resiliencyBooleanFALSEyesSESSIONYYenables resilient execution of cross shard queries
optimizer_dynamic_samplingInteger2yesSESSIONYYoptimizer dynamic sampling
optimizer_features_enableString23.1.0yesSESSIONYYoptimizer plan compatibility parameter
optimizer_ignore_hintsBooleanFALSEyesSESSIONYYenables the embedded hints to be ignored
optimizer_ignore_parallel_hintsBooleanFALSEyesSESSIONYYenables embedded parallel hints to be ignored
optimizer_index_cachingInteger0yesSESSIONYYoptimizer percent index caching
optimizer_index_cost_adjInteger100yesSESSIONYYoptimizer index cost adjustment
optimizer_inmemory_awareBooleanTRUEyesSESSIONYYoptimizer in-memory columnar awareness
optimizer_modeStringALL_ROWSyesSESSIONYYoptimizer mode
optimizer_real_time_statisticsBooleanFALSEyesSESSIONYYoptimizer real time statistics on conventional DML
optimizer_secure_view_mergingBooleanyesSYSTEM imm.YYdeprecatedoptimizer secure view merging and predicate pushdown/movearound
optimizer_session_typeStringNORMALyesSESSIONNNControls Auto Index
optimizer_use_invisible_indexesBooleanFALSEyesSESSIONYYUsage of invisible indexes (TRUE/FALSE)
optimizer_use_pending_statisticsBooleanFALSEyesSESSIONYYControl whether to use optimizer pending statistics
optimizer_use_sql_plan_baselinesBooleanTRUEyesSESSIONYYuse of SQL plan baselines for captured sql statements
optimizer_use_sql_quarantineBooleanTRUEyesSESSIONYYenable use of sql quarantine
os_authent_prefixStringops$yesSTATICNNprefix for auto-logon accounts
os_rolesBooleanFALSEyesSTATICNNretrieve roles from the operating system
outbound_dblink_protocolsStringALLyesSYSTEM imm.NYOutbound DBLINK Protocols allowed
parallel_adaptive_multi_userBooleanFALSEyesSYSTEM imm.NYdeprecatedenable adaptive setting of degree for multiple user streams
parallel_degree_limitStringCPUyesSESSIONYYlimit placed on degree of parallelism
parallel_degree_policyStringMANUALyesSESSIONYYpolicy used to compute the degree of parallelism (MANUAL/LIMITED/AUTO/ADAPTIVE)
parallel_execution_message_sizeInteger16384yesSTATICNNmessage buffer size for parallel execution
parallel_force_localBooleanFALSEyesSESSIONYYforce single instance execution
parallel_instance_groupStringyesSESSIONYYinstance group to use for all parallel operations
parallel_max_serversInteger80yesSYSTEM imm.YYmaximum parallel query servers per instance
parallel_min_degreeString1yesSESSIONYYcontrols the minimum DOP computed by Auto DOP
parallel_min_percentInteger0yesSESSIONNNminimum percent of threads required for parallel query
parallel_min_serversInteger4no (was 0)SYSTEM imm.NYminimum parallel query servers per instance
parallel_min_time_thresholdStringAUTOyesSESSIONYYthreshold above which a plan is a candidate for parallelization (in seconds)
parallel_servers_targetInteger32yesSYSTEM imm.YYinstance target in terms of number of parallel servers
parallel_threads_per_cpuInteger1yesSYSTEM imm.NYnumber of parallel execution threads per CPU
paranoid_concurrency_modeBooleanFALSEyesSTATICYNEnable strictly durable query data gets
pdb_file_name_convertStringyesSESSIONYYPDB file name convert patterns and strings for create cdb/pdb
pdb_lockdownStringyesSESSIONYYpluggable database lockdown profile
pdb_os_credentialStringyesSTATICYNpluggable database OS credential to bind
pdb_tde_key_transport_on_rekeyBooleanFALSEyesSYSTEM imm.YYEnable transport of PDB's TDE key to standby in redo
pdb_templateStringyesSESSIONYYPDB template
pdc_file_sizeBig integer4198400yesSTATICNNsize (in bytes) of the pmem direct commit file
permit_92_wrap_formatBooleanFALSEyesSTATICNNallow 9.2 or older wrap format in PL/SQL
pga_aggregate_limitBig integer2147483648yesSYSTEM imm.YYlimit of aggregate PGA memory for the instance or PDB
pga_aggregate_targetBig integer1048576000no (was 0)SYSTEM imm.YYbasicTarget size for the aggregate PGA memory consumed by the instance
pkcs11_library_locationStringyesSYSTEM imm.YYPKCS#11 library location for Transparent Data Encryption
pki_cert_auth_methodStringdefaultyesSYSTEM imm.YYPKI Certificate Authentication Method
plscope_settingsStringIDENTIFIERS:NONEyesSESSIONYYplscope_settings controls the compile time collection, cross reference, and storage of PL/SQL source code identifier and SQL statement data
plsql_ccflagsStringyesSESSIONYYPL/SQL ccflags
plsql_code_typeStringINTERPRETEDyesSESSIONYYPL/SQL code-type
plsql_debugBooleanFALSEyesSESSIONYYdeprecatedPL/SQL debug
plsql_function_dynamic_statsStringPREFERENCEyesSESSIONNNPerform Dynamic Sampling for PL/SQL functions
plsql_implicit_conversion_boolBooleanFALSEyesSESSIONYYPL/SQL: Implicit conversion for boolean
plsql_optimize_levelInteger2yesSESSIONYYPL/SQL optimize level
plsql_v2_compatibilityBooleanFALSEyesSESSIONYYdeprecatedPL/SQL version 2.x compatibility flag
plsql_warningsStringDISABLE:ALLyesSESSIONYYPL/SQL compiler warnings settings
pmem_filestoreStringyesSTATICNNPersistent Memory Filestore list
pre_page_sgaBooleanTRUEyesSTATICNNdeprecatedpre-page sga for process
priority_txns_high_wait_targetInteger2147483647yesSYSTEM imm.YYAuto abort wait for high pri txns
priority_txns_medium_wait_targetInteger2147483647yesSYSTEM imm.YYAuto abort wait for medium pri txns
priority_txns_modeStringROLLBACKyesSYSTEM imm.YYModes for Priority Transactions feature
private_temp_table_prefixStringORA$PTT_yesSYSTEM def.YYPrivate temporary table prefix
processesInteger320no (was 0)SYSTEM imm.NYbasicuser processes
processor_group_nameStringyesSTATICNNName of the processor group that this instance should run in.
query_rewrite_enabledStringTRUEyesSESSIONYYallow rewrite of queries using materialized views if enabled
query_rewrite_integrityStringenforcedyesSESSIONYYperform rewrite using materialized views with desired integrity
rdbms_server_dnStringyesSTATICNNdeprecatedRDBMS's Distinguished Name
read_onlyBooleanFALSEyesSESSIONNNRestrict WRITE operations in user session
read_only_open_delayedBooleanFALSEyesSTATICNNif TRUE delay opening of read only files until first access
recovery_parallelismInteger0yesSYSTEM imm.NYnumber of server processes to use for parallel recovery
recyclebinStringonyesSESSIONYYrecyclebin processing
redo_generation_kbps_maxInteger0yesSYSTEM imm.YYredo generation maximum KB/s
redo_transport_userStringyesSYSTEM imm.NYData Guard transport user when using password file
remote_dependencies_modeStringTIMESTAMPyesSESSIONYYremote-procedure-call dependencies mode parameter
remote_listenerStringyesSYSTEM imm.YYbasicremote listener
remote_login_passwordfileStringEXCLUSIVEno (was exclusive)STATICNNbasicpassword file usage parameter
remote_os_rolesBooleanFALSEyesSTATICNNallow non-secure remote clients to use os roles
remote_recovery_file_destStringyesSYSTEM imm.YNdefault remote database recovery file location for refresh/relocate
replication_dependency_trackingBooleanTRUEyesSTATICNNtracking dependency for Replication parallel propagation
resource_limitBooleanTRUEyesSYSTEM imm.YYmaster switch for resource limit
resource_manage_goldengateBooleanFALSEyesSYSTEM imm.NYgoldengate resource manager enabled
resource_manager_cpu_allocationInteger0yesSYSTEM imm.NYdeprecatedResource Manager CPU allocation
resource_manager_cpu_scopeStringINSTANCE_ONLYyesSTATICNNscope of CPU resource management
resource_manager_planStringSCHEDULER:DEFAULT_MAINTENANCE_PLANyesSYSTEM imm.YYresource mgr top plan
result_cache_auto_blocklistStringONyesSYSTEM imm.YYwhether to run the auto blocklisting algorithm
result_cache_execution_thresholdInteger2yesSYSTEM imm.YYminimum executions before a PL/SQL function is cached
result_cache_integrityStringTRUSTEDyesSYSTEM imm.YYresult cache deterministic PLSQL functions
result_cache_max_resultInteger5yesSYSTEM imm.YYmaximum result size as percent of cache size
result_cache_max_sizeBig integer16252928yesSYSTEM imm.YYmaximum amount of memory to be used by the cache
result_cache_max_temp_resultInteger5yesSYSTEM imm.YYmaximum temp per result as percent of total temp for result cache
result_cache_max_temp_sizeBig integer162529280yesSYSTEM imm.YYmaximum amount of temp space to be used
result_cache_modeStringMANUALyesSESSIONYYresult cache operator usage mode
result_cache_remote_expirationInteger0yesSESSIONYYmaximum life time (min) for any result using a remote object
resumable_timeoutInteger0yesSESSIONYYset resumable_timeout
rman_restore_file_storage_metadataBooleanFALSEyesSESSIONYYrestore file's storage metadata
rollback_segmentsStringyesSTATICYNundo segment list
row_movement_defaultStringDISABLEDyesSESSIONYYDefault row movement behavior
run_addm_for_awr_reportStringNONEyesSESSIONYYtypes of AWR snapshots for which ADDM can be run inside AWR report
saga_hist_retentionInteger43200yesSYSTEM imm.NYdefault value for retention of completed sagas
saga_msg_frameworkStringclassic_queueyesSYSTEM imm.YYQueue type used in SAGA infrastructure
scheduler_follow_pdbtzBooleanFALSEyesSYSTEM imm.YYMake scheduler objects follow PDB TZ
sec_max_failed_login_attemptsInteger3yesSTATICNNmaximum number of failed login attempts on a connection
sec_protocol_error_further_actionString(DROP,3)yesSYSTEM imm.NYTTC protocol error continue action
sec_protocol_error_trace_actionStringTRACEyesSYSTEM imm.NYTTC protocol error action
sec_return_server_release_bannerBooleanFALSEyesSTATICNNwhether the server retruns the complete version information
serial_reuseStringdisableyesSTATICNNdeprecatedreuse the frame segments
service_namesStringorcl23yesSYSTEM imm.NYservice names supported by the instance
session_cached_cursorsInteger50yesSESSIONYYNumber of cursors to cache in a session.
session_exit_on_package_state_errorBooleanFALSEyesSESSIONYYRequest session to exit when PL/SQL package state is discarded
session_max_open_filesInteger10yesSTATICNNmaximum number of open files allowed per session
sessionsInteger504yesSYSTEM imm.YYbasicuser and system sessions
sga_max_sizeBig integer3154116608yesSTATICNNmax total SGA size
sga_min_sizeBig integer0yesSYSTEM imm.YYMinimum, guaranteed size of PDB's SGA
sga_targetBig integer0no (was 0)SYSTEM imm.YYbasicTarget size of SGA
shadow_core_dumpStringpartialyesSYSTEM imm.YYCore Size for Shadow Processes
shard_apply_max_memory_sizeBig integer0yesSYSTEM imm.YYSNR Apply max memory size in bytes
shard_enable_raft_follower_readBooleanFALSEyesSESSIONYYenable read from follower replications units in a shard
shard_queries_restricted_by_keyBooleanFALSEyesSESSIONYYadd shard key predicates to the query
shard_raft_logfile_sizeBig integer1073741824yesSYSTEM imm.YYsize of raft log file in byte
shared_memory_addressInteger0yesSTATICNNSGA starting address (low order 32-bits on 64-bit platforms)
shared_pool_reserved_sizeBig integer61069066yesSTATICNNsize in bytes of reserved area of shared pool
shared_pool_sizeBig integer0yesSYSTEM imm.YYsize in bytes of shared pool
shared_server_sessionsIntegeryesSYSTEM imm.NYmax number of shared server sessions
shared_serversInteger1yesSYSTEM imm.YYbasicnumber of shared servers to start up
shrd_dupl_table_refresh_rateInteger60yesSESSIONYYduplicated table refresh rate (in seconds)
skip_unusable_indexesBooleanTRUEyesSESSIONYYskip unusable indexes if set to TRUE
smtp_out_serverStringyesSESSIONYYutl_smtp server and port configuration parameter
soda_behaviorStringyesSESSIONYYcontrol soda behaviors
sort_area_retained_sizeInteger0yesSESSIONYYsize of in-memory sort work area retained between fetch calls
sort_area_sizeInteger65536yesSESSIONYYsize of in-memory sort work area
spatial_vector_accelerationBooleanTRUEno (was TRUE)SESSIONYYenable spatial vector acceleration
spfileString/u01/app/oracle/product/23.26.3/dbhome_1/dbs/spfileorcl23.o…yesSYSTEM imm.NYserver parameter file
sql92_securityBooleanTRUEyesSTATICYNrequire select privilege for searched update/delete
sql_error_mitigationStringonyesSESSIONYYenables automatic error mitigation
sql_history_enabledBooleanFALSEyesSESSIONYYSQL Query History is enabled when TRUE
sql_traceBooleanFALSEyesSESSIONYYdeprecatedenable SQL trace
sql_transpilerStringOFFyesSESSIONYYEnable SQL transpiler
sqltune_categoryStringDEFAULTyesSESSIONYYCategory qualifier for applying hintsets
ssl_walletStringyesSYSTEM imm.NYssl_wallet
standby_db_preserve_statesStringNONEyesSTATICNNPreserve state cross standby role transition
standby_file_managementStringMANUALyesSYSTEM imm.NYif auto then files are created/dropped automatically on standby
standby_parse_limit_secondsInteger300yesSESSIONYYStandby parse time limit (seconds)
standby_pdb_source_file_dblinkStringyesSYSTEM imm.NYdatabase link to standby source files
standby_pdb_source_file_directoryStringyesSYSTEM imm.NYstandby source file directory location
star_transformation_enabledStringFALSEyesSESSIONYYbasicenable the use of star transformation
statement_redirect_serviceStringyesSYSTEM imm.YYstatement redirect service
statistics_levelStringTYPICALyesSESSIONYYstatistics level
streams_pool_sizeBig integer0yesSYSTEM imm.NYsize in bytes of the streams pool
sysdate_at_dbtimezoneBooleanFALSEyesSESSIONYYuse DB timezone while computing sysdate and systimestamp value
tablespace_encryptionStringMANUAL_ENABLEyesSTATICNNTablepsace encryption in hybrid ADG
tablespace_encryption_default_algorithmStringAES256yesSYSTEM imm.YYdefault tablespace encryption block cipher mode
tablespace_encryption_default_cipher_modeStringXTSyesSYSTEM imm.YYdefault tablespace encryption block cipher mode
tape_asynch_ioBooleanTRUEyesSTATICNNUse asynch I/O requests for tape devices
target_pdbsInteger5yesSTATICNNParameter is a hint to adjust certain attributes of the CDB
tde_configurationStringyesSYSTEM imm.YYPer-PDB configuration for Transparent Data Encryption
tde_key_cacheBooleanFALSEyesSESSIONYYEnable caching of TDE intermediate key
temp_undo_enabledBooleanFALSEyesSESSIONYYis temporary undo enabled
threadInteger0yesSYSTEM imm.NYRedo thread to mount
threaded_executionBooleanFALSEyesSTATICNNThreaded Execution Mode
time_at_dbtimezoneStringoffyesSTATICYNuse DB timezone when computing current time
timed_os_statisticsInteger0yesSESSIONYYinternal os statistic gathering interval in seconds
timed_statisticsBooleanTRUEyesSESSIONYYmaintain internal timing statistics
timezone_version_upgrade_integrityStringenforcedyesSYSTEM imm.YYperform DST upgrade leveraging constraints with desired integrity
timezone_version_upgrade_onlineBooleanFALSEyesSYSTEM imm.YYenable/disable time zone version upgrade online
trace_enabledBooleanTRUEyesSYSTEM imm.NYenable in memory tracing
tracefile_content_classificationStringDEFAULTyesSTATICNNenable output of trace record security label prefix
tracefile_identifierStringyesSESSIONNNtrace file custom identifier
transaction_recoveryStringENABLEDyesSYSTEM imm.YYdeprecatedTransaction recovery is enabled when set to ENABLED
transactionsInteger554yesSTATICNNmax. number of concurrent active transactions
transactions_per_rollback_segmentInteger5yesSTATICNNnumber of active transactions per rollback segment
true_cacheBooleanFALSEyesSTATICNNEnable True Cache
true_cache_configStringyesSYSTEM imm.NYTrue cache config
txn_auto_rollback_high_priority_wait_targetInteger2147483647yesSYSTEM imm.YYdeprecatedAuto abort wait for high pri txns
txn_auto_rollback_medium_priority_wait_targetInteger2147483647yesSYSTEM imm.YYdeprecatedAuto abort wait for medium pri txns
txn_auto_rollback_modeStringROLLBACKyesSYSTEM imm.YYdeprecatedModes for Priority Transactions feature
txn_priorityStringHIGHyesSESSIONNNPriority of a transaction in a session
undo_managementStringAUTOyesSTATICYNinstance runs in SMU mode if TRUE, else in RBU mode
undo_retentionInteger900yesSYSTEM imm.YYundo retention in seconds
undo_tablespaceStringUNDOTBS1no (was NONE)SYSTEM imm.YYbasicuse/switch undo tablespace
unified_audit_common_systemlogStringyesSTATICNNSyslog facility and level for only common unified audit records
unified_audit_systemlogStringyesSYSTEM def.YYSyslog facility and level for Unified Audit
unified_audit_trail_exclude_columnsStringNONEyesSYSTEM imm.YYExclude columns from unified_audit_trail
uniform_log_timestamp_formatBooleanTRUEyesSYSTEM imm.NYuse uniform timestamp formats vs pre-12.2 formats
use_dedicated_brokerStringNONEyesSYSTEM imm.NYUse dedicated connection broker
use_large_pagesStringTRUEyesSTATICNNUse large pages if available (TRUE/FALSE/ONLY)
user_dump_destString/u01/app/oracle/product/23.26.3/dbhome_1/rdbms/logyesSYSTEM imm.NYdeprecatedUser process dump directory
vector_index_neighbor_graph_reloadStringRESTARTyesSESSIONYYspecifies whether HNSW reload is enabled
vector_memory_sizeBig integer0yesSYSTEM imm.YYsize in bytes of vector memory area
vector_query_captureStringONyesSESSIONYYSpecifies whether vector query capture is enabled
wallet_rootStringyesSTATICNNwallet root instance initialization parameter
workarea_size_policyStringAUTOyesSESSIONYYpolicy used to size SQL working areas (MANUAL/AUTO)
xml_client_side_decodingStringtrueyesSESSIONYYenable/disable xml client-side decoding
xml_db_eventsStringenableyesSESSIONYYare XML DB events enabled
xml_handling_of_invalid_charsStringraise_erroryesSESSIONYYHandle invalid chars during xmlelement
xml_paramsStringyesSESSIONYYParameters to alter xml behavior

No comments:

Post a Comment