The Oracle collector now prepends the view name to each metric to avoid overwriting metrics from different views with the same names

This commit is contained in:
dvanaken
2019-11-05 11:05:39 -05:00
committed by Dana Van Aken
parent 6283186d76
commit d874ca6a8b
19 changed files with 11949 additions and 20017 deletions

View File

@@ -3,8 +3,11 @@
#
# Copyright (c) 2017-18, Carnegie Mellon University Database Group
#
import csv
import json
import shutil
from collections import OrderedDict
from operator import itemgetter
# Oracle Type:
# 1 - Boolean
@@ -156,54 +159,77 @@ def set_field(fields):
fields['default'] = 'TRUE'
def main():
final_metrics = []
with open('oracle12.txt', 'r') as f:
num = 0
COLNAMES = ("NAME", "TYPE", "DEFAULT_VALUE", "DESCRIPTION")
lines = f.readlines()
for line in lines:
line = line.strip().replace("\n", "")
if not line:
continue
if line in ['DESCRIPTION', 'NAME', 'TYPE'] or line.startswith('-'):
continue
if num == 0:
entry = {}
entry['model'] = 'website.KnobCatalog'
fields = {}
fields['name'] = line
elif num == 1:
if line in ['3', '6']:
fields['vartype'] = 2
fields['default'] = 0
elif line == '1':
fields['vartype'] = 4
fields['default'] = False
# DB_VERSIONS = {
# '19': 19,
# '12': 12,
# '12.1': 121,
# }
def process_version(version, dbms_id, delim=','):
fields_list = []
with open('oracle{}.csv'.format(version), 'r', newline='') as f:
reader = csv.reader(f, delimiter=delim)
header = [h.upper() for h in next(reader)]
# header = ["NUM","NAME","TYPE","VALUE","DISPLAY_VALUE","DEFAULT_VALUE","ISDEFAULT","ISSES_MODIFIABLE","ISSYS_MODIFIABLE","ISPDB_MODIFIABLE","ISINSTANCE_MODIFIABLE","ISMODIFIED","ISADJUSTED","ISDEPRECATED","ISBASIC","DESCRIPTION","UPDATE_COMMENT","HASH","CON_ID"]
idxs = [header.index(c) for c in COLNAMES]
ncols = len(header)
ri = 0
for row in reader:
assert ncols == len(row), (ri, ncols, len(row))
fields = {}
for i, cname in zip(idxs, COLNAMES):
value = row[i]
if isinstance(value, str):
value = value.strip()
if cname == 'NAME':
fields['name'] = value.upper()
elif cname == 'TYPE':
print('TYPE: {}'.format(value))
value = int(value)
if value == 1:
fields['vartype'] = 4 # Boolean
elif value in (3, 6):
fields['vartype'] = 2 # Integer
else:
fields['vartype'] = 1 # Assume it's a sting otherwise
elif cname == 'DEFAULT_VALUE':
fields['default'] = value
else:
fields['vartype'] = 1
fields['default'] = ''
elif num == 2:
fields['summary'] = line
fields['scope'] = 'global'
fields['dbms'] = 12 # oracle
fields['category'] = ''
fields['enumvals'] = None
fields['context'] = ''
fields['unit'] = 3 # other
fields['tunable'] = False
fields['scope'] = 'global'
fields['description'] = ''
fields['minval'] = None
fields['maxval'] = None
set_field(fields)
fields['name'] = 'global.' + fields['name']
entry['fields'] = fields
final_metrics.append(entry)
num = (num + 1) % 3
with open('oracle-12_knobs.json', 'w') as f:
fields['summary'] = value
fields.update(
scope='global',
dbms=dbms_id,
category='',
enumvals=None,
context='',
unit=3, # Other
tunable=False,
description='',
minval=None,
maxval=None,
)
set_field(fields)
fields['name'] = ('global.' + fields['name']).lower()
fields_list.append(fields)
ri += 1
fields_list = sorted(fields_list, key=itemgetter('name'))
final_metrics = [dict(model='website.KnobCatalog', fields=fs) for fs in fields_list]
filename = 'oracle-{}_knobs.json'.format(version)
with open(filename, 'w') as f:
json.dump(final_metrics, f, indent=4)
shutil.copy("oracle-12_knobs.json", "../../../../website/fixtures/oracle-12_knobs.json")
# shutil.copy(filename, "../../../../website/fixtures/{}".format(filename))
def main():
process_version('19', 19)
# process_version('12', 12)
process_version('12.1', 121, delim='|')
if __name__ == '__main__':

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,446 @@
"NUM","NAME","TYPE","VALUE","DISPLAY_VALUE","DEFAULT_VALUE","ISDEFAULT","ISSES_MODIFIABLE","ISSYS_MODIFIABLE","ISPDB_MODIFIABLE","ISINSTANCE_MODIFIABLE","ISMODIFIED","ISADJUSTED","ISDEPRECATED","ISBASIC","DESCRIPTION","UPDATE_COMMENT","HASH","CON_ID"
52,"lock_name_space",2,,,,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","lock name space used for generating lock names for standby/clone database",,1022980314,1
53,"processes",3,"320","320","0","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","user processes",,4162014761,1
54,"sessions",3,"504","504",,"TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","TRUE","user and system sessions",,3194028855,1
71,"timed_statistics",1,"TRUE","TRUE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","maintain internal timing statistics",,2224114877,1
72,"timed_os_statistics",3,"0","0","0","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","internal os statistic gathering interval in seconds",,2425331770,1
73,"resource_limit",1,"TRUE","TRUE","TRUE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","master switch for resource limit",,19363908,1
74,"license_max_sessions",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum number of non-system user sessions allowed",,2409810571,1
75,"license_sessions_warning",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","warning level for number of non-system user sessions",,4168462818,1
84,"long_module_action",1,"TRUE","TRUE","TRUE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Use longer module and action",,3000737841,1
106,"standby_db_preserve_states",2,"NONE","NONE","NONE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Preserve state cross standby role transition",,1862199831,1
110,"instance_abort_delay_time",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","time to delay an internal initiated abort (in seconds)",,2964226596,1
125,"cpu_count",3,"4","4","0","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum number of CPUs",,1095434542,1
126,"cpu_min_count",2,"4","4",,"TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","minimum number of CPUs required",,4228462918,1
136,"instance_groups",2,,,,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","list of instance group names",,714080904,1
145,"event",2,,,"NONE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","debug event control - default null string",,557769962,1
160,"sga_max_size",6,"1610612736","1536M","0","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","max total SGA size","internally adjusted",3640569645,1
167,"use_large_pages",2,"TRUE","TRUE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Use large pages if available (TRUE/FALSE/ONLY)",,3303635063,1
176,"pre_page_sga",1,"TRUE","TRUE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","pre-page sga for process",,4157293338,1
177,"shared_memory_address",3,"0","0","0","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","SGA starting address (low order 32-bits on 64-bit platforms)",,1147088340,1
178,"hi_shared_memory_address",3,"0","0","0","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","SGA starting address (high order 32-bits on 64-bit platforms)",,2467282562,1
180,"lock_sga",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Lock entire SGA in physical memory",,3105560606,1
234,"processor_group_name",2,,,,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Name of the processor group that this instance should run in.",,3670365524,1
264,"allow_group_access_to_sga",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Allow read access for SGA to users of Oracle owner group",,1282645390,1
274,"sga_min_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Minimum, guaranteed size of PDB's SGA",,1499658341,1
277,"shared_pool_size",6,"0","0","134217728","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","size in bytes of shared pool",,1378805370,1
279,"large_pool_size",6,"0","0","134217728","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","size in bytes of large pool",,4033299612,1
281,"java_pool_size",6,"0","0","25165824","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","size in bytes of java pool",,682389752,1
283,"streams_pool_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","size in bytes of the streams pool",,4113905875,1
287,"shared_pool_reserved_size",6,"19293798","19293798","0","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","size in bytes of reserved area of shared pool",,3099794371,1
290,"java_soft_sessionspace_limit",3,"0","0","0","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","warning limit on size in bytes of a Java sessionspace",,2289238341,1
291,"java_max_sessionspace_size",3,"0","0","0","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","max allowed size in bytes of a Java sessionspace",,2976582011,1
293,"pga_aggregate_limit",6,"2147483648","2G","0","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","limit of aggregate PGA memory for the instance or PDB",,473987584,1
316,"spfile",2,"/opt/oracle/product/19c/dbhome_1/dbs/spfileORCLCDB.ora","/opt/oracle/product/19c/dbhome_1/dbs/spfileORCLCDB.ora","NONE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","server parameter file",,3653611964,1
317,"instance_type",2,"RDBMS","RDBMS","RDBMS","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","type of instance to be executed",,3061809694,1
331,"uniform_log_timestamp_format",1,"TRUE","TRUE","TRUE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","use uniform timestamp formats vs pre-12.2 formats",,4010398416,1
368,"nls_language",2,"AMERICAN","AMERICAN","AMERICAN","FALSE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","TRUE","NLS language name",,3485237129,1
369,"nls_territory",2,"AMERICA","AMERICA","AMERICA","FALSE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","TRUE","NLS territory name",,4101776966,1
370,"nls_sort",2,,,"NONE","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","NLS linguistic definition name",,1540560305,1
371,"nls_date_language",2,,,"NONE","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","NLS date language name",,1568340031,1
372,"nls_date_format",2,,,"NONE","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","NLS Oracle date format",,677968994,1
373,"nls_currency",2,,,"NONE","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","NLS local currency symbol",,1866631167,1
374,"nls_numeric_characters",2,,,"NONE","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","NLS numeric characters",,1350504691,1
375,"nls_iso_currency",2,,,"NONE","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","NLS ISO currency territory name",,1902084911,1
376,"nls_calendar",2,,,"NONE","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","NLS calendar system name",,600406646,1
377,"nls_time_format",2,,,"NONE","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","time format",,279591871,1
378,"nls_timestamp_format",2,,,"NONE","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","time stamp format",,1867855122,1
379,"nls_time_tz_format",2,,,"NONE","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","time with timezone format",,3395216182,1
380,"nls_timestamp_tz_format",2,,,"NONE","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","timestamp with timezone format",,197674624,1
381,"nls_dual_currency",2,,,"NONE","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","Dual currency symbol",,3671532261,1
382,"nls_comp",2,"BINARY","BINARY","BINARY","TRUE","TRUE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","NLS comparison",,2564149862,1
383,"nls_length_semantics",2,"BYTE","BYTE","BYTE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","create columns using byte or char semantics by default",,726541850,1
384,"nls_nchar_conv_excp",2,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","NLS raise an exception instead of allowing implicit conversion",,928612038,1
389,"disk_asynch_io",1,"TRUE","TRUE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Use asynch I/O for random access devices",,629465343,1
390,"tape_asynch_io",1,"TRUE","TRUE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Use asynch I/O requests for tape devices",,4219463829,1
392,"dbwr_io_slaves",3,"0","0",,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","DBWR I/O slaves",,3394903742,1
396,"backup_tape_io_slaves",1,"FALSE","FALSE","FALSE","TRUE","FALSE","DEFERRED","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","BACKUP Tape I/O slaves",,3484415485,1
404,"fileio_network_adapters",2,,,,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Network Adapters for File I/O",,3529525450,1
406,"filesystemio_options",2,"none","none","asynch","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","IO operations on filesystem files",,752770605,1
407,"dnfs_batch_size",3,"4096","4096","4096","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Max number of dNFS asynch I/O requests queued per session",,1994133209,1
422,"clonedb",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","clone database",,928499171,1
423,"instant_restore",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","instant repopulation of datafiles",,4142333245,1
433,"http_proxy",2,,,,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","http_proxy",,3663661791,1
434,"ssl_wallet",2,,,,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","ssl_wallet",,2995267759,1
439,"ofs_threads",3,"4","4","4","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Number of OFS threads",,1131849260,1
452,"resource_manager_cpu_allocation",3,"4","4","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","TRUE","FALSE","Resource Manager CPU allocation",,2295969896,1
454,"resource_manager_plan",2,,,,"TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","resource mgr top plan",,771115908,1
472,"db_performance_profile",2,,,,"TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Database performance category",,3630520311,1
476,"max_iops",3,"0","0","0","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","MAX IO per second",,533109382,1
477,"max_mbps",3,"0","0","0","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","MAX MB per second",,3697729492,1
480,"max_idle_time",3,"0","0","0","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum session idle time in minutes",,1802489217,1
481,"max_idle_blocker_time",3,"0","0","0","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum idle time for a blocking session in minutes",,290450916,1
763,"cluster_interconnects",2,,,"NONE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","interconnects for RAC use",,453198651,1
836,"file_mapping",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","enable file mapping",,232153461,1
844,"max_datapump_jobs_per_pdb",2,"100","100","100","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum number of concurrent Data Pump Jobs per PDB",,2176709606,1
845,"max_datapump_parallel_per_job",2,"50","50","50","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum number of parallel processes per Data Pump Job",,1889722817,1
847,"service_names",2,"ORCLCDB","ORCLCDB",,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","service names supported by the instance",,715667293,1
866,"threaded_execution",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Threaded Execution Mode",,606669933,1
952,"clonedb_dir",2,,,,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","CloneDB Directory",,924431809,1
963,"enable_dnfs_dispatcher",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Enable DNFS Dispatcher",,1212402461,1
1074,"gcs_server_processes",3,"0","0","0","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","number of background gcs server processes to start",,3586934196,1
1091,"active_instance_count",3,,,,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","number of active instances in the cluster database",,1385697455,1
1238,"instance_mode",2,"READ-WRITE","READ-WRITE","read-write","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","indicates whether the instance read-only or read-write or read-mostly",,2136961442,1
1558,"sga_target",6,"1610612736","1536M","0","FALSE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","TRUE","Target size of SGA",,3134551790,1
1560,"memory_target",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Target size of Oracle SGA and PGA memory",,1127054141,1
1561,"memory_max_target",6,"0","0","0","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Max size for Memory Target",,3306918234,1
1595,"control_files",2,"/opt/oracle/oradata/ORCLCDB/control01.ctl","/opt/oracle/oradata/ORCLCDB/control01.ctl","?=/dbs/cntrl@.dbf","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","control file names list",,2567365799,1
1604,"db_file_name_convert",2,,,,"TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","datafile name convert patterns and strings for standby/clone db",,2967069573,1
1605,"log_file_name_convert",2,,,,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","logfile name convert patterns and strings for standby/clone db",,3861982543,1
1606,"control_file_record_keep_time",3,"7","7","7","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","control file record keep time in days",,98688804,1
1613,"db_block_buffers",3,"0","0","0","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","Number of database blocks cached in memory",,2234540729,1
1617,"db_block_checksum",2,"TYPICAL","TYPICAL","TYPICAL","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","store checksum in db blocks and check during reads",,236379301,1
1618,"db_ultra_safe",2,"OFF","OFF","OFF","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Sets defaults for other parameters that control protection levels",,93442106,1
1619,"db_block_size",3,"8192","8192","8192","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","Size of database block in bytes",,3433134853,1
1634,"db_cache_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Size of DEFAULT buffer pool for standard block size buffers",,1878231416,1
1636,"db_2k_cache_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Size of cache for 2K buffers",,1251260559,1
1637,"db_4k_cache_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Size of cache for 4K buffers",,2460170291,1
1638,"db_8k_cache_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Size of cache for 8K buffers",,1564706367,1
1639,"db_16k_cache_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Size of cache for 16K buffers",,1652300362,1
1640,"db_32k_cache_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Size of cache for 32K buffers",,63005144,1
1641,"db_keep_cache_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Size of KEEP buffer pool for standard block size buffers",,1851163622,1
1642,"db_recycle_cache_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Size of RECYCLE buffer pool for standard block size buffers",,409865660,1
1643,"memoptimize_pool_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Size of cache for imoltp buffers",,822772958,1
1648,"db_big_table_cache_percent_target",2,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Big table cache target size in percentage",,2539063750,1
1668,"encrypt_new_tablespaces",2,"CLOUD_ONLY","CLOUD_ONLY","CLOUD_ONLY","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","whether to encrypt newly created tablespaces",,2650595996,1
1678,"db_writer_processes",3,"1","1","0","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","number of background database writer processes to start",,2675391963,1
1707,"buffer_pool_keep",2,,,"NONE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","Number of database blocks/latches in keep buffer pool",,4221146327,1
1708,"buffer_pool_recycle",2,,,"NONE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","Number of database blocks/latches in recycle buffer pool",,243965399,1
1771,"db_flash_cache_file",2,,,"NONE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","flash cache file for default block size",,2154593857,1
1772,"db_flash_cache_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","flash cache size for db_flash_cache_file",,2662488753,1
1825,"db_cache_advice",2,"ON","ON","OFF","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Buffer cache sizing advisory",,76537751,1
1845,"compatible",2,"19.0.0","19.0.0",,"FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","Database will be completely compatible with this software version",,2586206788,1
1865,"log_archive_dest_1",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","TRUE","archival destination #1 text string",,2668113655,1
1866,"log_archive_dest_2",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","TRUE","archival destination #2 text string",,993174268,1
1867,"log_archive_dest_3",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #3 text string",,4019416444,1
1868,"log_archive_dest_4",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #4 text string",,4076933173,1
1869,"log_archive_dest_5",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #5 text string",,2983371913,1
1870,"log_archive_dest_6",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #6 text string",,3163254911,1
1871,"log_archive_dest_7",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #7 text string",,1195731386,1
1872,"log_archive_dest_8",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #8 text string",,1294131998,1
1873,"log_archive_dest_9",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #9 text string",,2975895765,1
1874,"log_archive_dest_10",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #10 text string",,4052929217,1
1875,"log_archive_dest_11",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #11 text string",,250996408,1
1876,"log_archive_dest_12",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #12 text string",,2055242793,1
1877,"log_archive_dest_13",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #13 text string",,3129541886,1
1878,"log_archive_dest_14",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #14 text string",,646973396,1
1879,"log_archive_dest_15",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #15 text string",,2102065363,1
1880,"log_archive_dest_16",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #16 text string",,3433075299,1
1881,"log_archive_dest_17",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #17 text string",,3605958982,1
1882,"log_archive_dest_18",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #18 text string",,2185923656,1
1883,"log_archive_dest_19",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #19 text string",,3460444459,1
1884,"log_archive_dest_20",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #20 text string",,4223402204,1
1885,"log_archive_dest_21",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #21 text string",,1524973738,1
1886,"log_archive_dest_22",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #22 text string",,2302788208,1
1887,"log_archive_dest_23",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #23 text string",,428356674,1
1888,"log_archive_dest_24",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #24 text string",,875888895,1
1889,"log_archive_dest_25",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #25 text string",,2545053957,1
1890,"log_archive_dest_26",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #26 text string",,1817558786,1
1891,"log_archive_dest_27",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #27 text string",,4097113290,1
1892,"log_archive_dest_28",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #28 text string",,1607184325,1
1893,"log_archive_dest_29",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #29 text string",,3817697632,1
1894,"log_archive_dest_30",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #30 text string",,2615509879,1
1895,"log_archive_dest_31",2,,,"NONE","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #31 text string",,3017163142,1
1896,"log_archive_dest_state_1",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","TRUE","archival destination #1 state text string",,2730384854,1
1897,"log_archive_dest_state_2",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","TRUE","archival destination #2 state text string",,148092523,1
1898,"log_archive_dest_state_3",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #3 state text string",,2513869874,1
1899,"log_archive_dest_state_4",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #4 state text string",,3691366817,1
1900,"log_archive_dest_state_5",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #5 state text string",,3081952655,1
1901,"log_archive_dest_state_6",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #6 state text string",,304021296,1
1902,"log_archive_dest_state_7",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #7 state text string",,3630253584,1
1903,"log_archive_dest_state_8",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #8 state text string",,3554679994,1
1904,"log_archive_dest_state_9",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #9 state text string",,1436305019,1
1905,"log_archive_dest_state_10",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #10 state text string",,1751244906,1
1906,"log_archive_dest_state_11",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #11 state text string",,2886606469,1
1907,"log_archive_dest_state_12",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #12 state text string",,3304517691,1
1908,"log_archive_dest_state_13",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #13 state text string",,2269052938,1
1909,"log_archive_dest_state_14",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #14 state text string",,2727699920,1
1910,"log_archive_dest_state_15",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #15 state text string",,2514322449,1
1911,"log_archive_dest_state_16",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #16 state text string",,2187424721,1
1912,"log_archive_dest_state_17",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #17 state text string",,1347081708,1
1913,"log_archive_dest_state_18",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #18 state text string",,2558416988,1
1914,"log_archive_dest_state_19",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #19 state text string",,1838072217,1
1915,"log_archive_dest_state_20",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #20 state text string",,2897696991,1
1916,"log_archive_dest_state_21",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #21 state text string",,1810950964,1
1917,"log_archive_dest_state_22",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #22 state text string",,3965758431,1
1918,"log_archive_dest_state_23",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #23 state text string",,1640771709,1
1919,"log_archive_dest_state_24",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #24 state text string",,312358666,1
1920,"log_archive_dest_state_25",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #25 state text string",,2480335086,1
1921,"log_archive_dest_state_26",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #26 state text string",,2373194801,1
1922,"log_archive_dest_state_27",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #27 state text string",,3084460413,1
1923,"log_archive_dest_state_28",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #28 state text string",,1760097473,1
1924,"log_archive_dest_state_29",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #29 state text string",,2023610917,1
1925,"log_archive_dest_state_30",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #30 state text string",,2972207749,1
1926,"log_archive_dest_state_31",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination #31 state text string",,4128759905,1
1927,"log_archive_start",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","start archival process on SGA initialization",,952772995,1
1928,"log_archive_dest",2,,,"NONE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","archival destination text string",,2428527576,1
1929,"log_archive_duplex_dest",2,,,"NONE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","duplex archival destination text string",,3687644184,1
1930,"log_archive_min_succeed_dest",3,"1","1","1","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","minimum number of archive destinations that must succeed",,3835057806,1
1935,"fal_client",2,,,"NONE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FAL client",,1512728298,1
1936,"fal_server",2,,,"NONE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FAL server list",,72419950,1
1938,"log_archive_trace",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Establish archive operation tracing level",,967210318,1
1948,"data_guard_sync_latency",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Data Guard SYNC latency",,1162850028,1
1955,"log_archive_config",2,,,"NONE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","log archive config",,1745268181,1
1959,"log_archive_format",2,"%t_%s_%r.dbf","%t_%s_%r.dbf","%t_%s_%r.dbf","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","archival destination format",,267180648,1
1960,"data_guard_max_io_time",3,"240","240","240","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum I/O time before process considered hung",,2540830474,1
1961,"data_guard_max_longio_time",3,"240","240","240","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum long I/O time before process considered hung",,3495862319,1
1975,"redo_transport_user",2,,,"NONE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Data Guard transport user when using password file",,2619943614,1
1980,"log_archive_max_processes",3,"4","4","4","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum number of active ARCH processes",,3132953756,1
1998,"log_buffer",6,"7307264","7136K","0","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","redo circular buffer size","log buffer update",1173026923,1
2004,"log_checkpoint_interval",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","# redo blocks checkpoint threshold",,421865232,1
2005,"log_checkpoint_timeout",3,"1800","1800","1800","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Maximum time interval between checkpoints in seconds",,1325866608,1
2007,"archive_lag_target",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Maximum number of seconds of redos the standby could lose",,592789495,1
2069,"db_files",3,"200","200","200","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","max allowable # db files",,314572703,1
2070,"db_file_multiblock_read_count",3,"128","128","0","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","db block to be read each IO",,1428169303,1
2074,"read_only_open_delayed",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","if TRUE delay opening of read only files until first access",,3134028732,1
2075,"cluster_database",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","if TRUE startup in cluster database mode",,3044213568,1
2076,"cluster_database_instances",3,"1","1",,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","number of instances to use for sizing cluster db SGA structures",,2296134110,1
2077,"db_create_file_dest",2,,,"NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","TRUE","default database location",,203090614,1
2078,"db_create_online_log_dest_1",2,,,"NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","TRUE","online log/controlfile destination #1",,1631516011,1
2079,"db_create_online_log_dest_2",2,,,"NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","TRUE","online log/controlfile destination #2",,563999388,1
2080,"db_create_online_log_dest_3",2,,,"NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","online log/controlfile destination #3",,1878635215,1
2081,"db_create_online_log_dest_4",2,,,"NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","online log/controlfile destination #4",,2503927821,1
2082,"db_create_online_log_dest_5",2,,,"NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","online log/controlfile destination #5",,1433039549,1
2083,"db_recovery_file_dest",2,,,"NONE","TRUE","FALSE","IMMEDIATE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","default database recovery file location",,3387568471,1
2084,"db_recovery_file_dest_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","database recovery files size limit",,1541539076,1
2086,"standby_file_management",2,"MANUAL","MANUAL","MANUAL","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","if auto then files are created/dropped automatically on standby",,3958066716,1
2186,"db_unrecoverable_scn_tracking",1,"TRUE","TRUE","TRUE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Track nologging SCN in controlfile",,1772971972,1
2191,"thread",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Redo thread to mount",,2684606808,1
2199,"enabled_PDBs_on_standby",2,"*","*","*","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","List of Enabled PDB patterns",,4147752604,1
2202,"fast_start_io_target",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","TRUE","FALSE","Upper bound on recovery reads",,1445495989,1
2203,"fast_start_mttr_target",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","MTTR target in seconds",,3666596407,1
2210,"log_checkpoints_to_alert",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","log checkpoint begin/end to alert file",,1565101272,1
2211,"db_lost_write_protect",2,"NONE","NONE","NONE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","enable lost write detection",,1160013993,1
2232,"recovery_parallelism",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","number of server processes to use for parallel recovery",,4261073806,1
2315,"enable_goldengate_replication",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","goldengate replication enabled",,1531782384,1
2353,"inmemory_adg_enabled",1,"TRUE","TRUE","TRUE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Enable IMC support on ADG",,855648782,1
2384,"db_flashback_retention_target",3,"1440","1440","1440","TRUE","FALSE","IMMEDIATE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Maximum Flashback Database log retention time in minutes.",,2211957778,1
2524,"data_transfer_cache_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Size of data transfer cache",,2667697950,1
2532,"enable_imc_with_mira",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","enable IMC with multi instance redo apply",,585287948,1
2544,"adg_account_info_tracking",2,"LOCAL","LOCAL","LOCAL","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","ADG user account info tracked in standby(LOCAL) or in Primary(GLOBAL)",,3484866638,1
2545,"adg_redirect_dml",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Enable DML Redirection from ADG",,1230296824,1
2547,"dml_locks",3,"2216","2216",,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","dml locks - one for each table modified in a transaction",,1576699050,1
2552,"replication_dependency_tracking",1,"TRUE","TRUE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","tracking dependency for Replication parallel propagation",,2475358177,1
2561,"transactions",3,"554","554",,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","max. number of concurrent active transactions",,812710636,1
2562,"transactions_per_rollback_segment",3,"5","5","5","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","number of active transactions per rollback segment",,2728085332,1
2573,"temp_undo_enabled",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","is temporary undo enabled",,2961108249,1
2583,"rollback_segments",2,,,,"TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","undo segment list",,1884290623,1
2585,"undo_management",2,"AUTO","AUTO","AUTO","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","instance runs in SMU mode if TRUE, else in RBU mode",,1401409411,1
2589,"undo_tablespace",2,"UNDOTBS1","UNDOTBS1","NONE","FALSE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","TRUE","use/switch undo tablespace",,2692150816,1
2598,"undo_retention",3,"900","900","900","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","undo retention in seconds",,3327480172,1
2606,"fast_start_parallel_rollback",2,"LOW","LOW","LOW","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","max number of parallel recovery slaves that may be used",,1116456128,1
2608,"resumable_timeout",3,"0","0","0","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","set resumable_timeout",,3544280463,1
2685,"instance_number",3,"0","0","0","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","instance number",,3331028598,1
2771,"heat_map",2,"OFF","OFF","OFF","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","ILM Heatmap Tracking",,557025825,1
2793,"inmemory_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","size in bytes of in-memory area",,2061531072,1
2794,"inmemory_xmem_size",6,"0","0","0","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","size in bytes of in-memory xmem area",,2723349649,1
2803,"inmemory_prefer_xmem_memcompress",2,,,"NONE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Prefer to store tables with given memcompress levels in xmem",,3157231085,1
2804,"inmemory_prefer_xmem_priority",2,,,"NONE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Prefer to store tables with given priority levels in xmem",,3014816868,1
2827,"allow_rowid_column_type",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Allow creation of rowid column",,2475532286,1
2831,"db_block_checking",2,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","header checking and data and index block checking",,1476124072,1
2836,"recyclebin",2,"on","on","on","TRUE","TRUE","DEFERRED","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","recyclebin processing",,4276141125,1
2893,"db_index_compression_inheritance",2,"NONE","NONE","NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","options for table or tablespace level compression inheritance",,702102530,1
2998,"db_securefile",2,"PREFERRED","PREFERRED","PERMITTED","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","permit securefile storage during lob creation",,3201873517,1
3035,"inmemory_clause_default",2,,,"NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Default in-memory clause for new tables",,2908041815,1
3036,"inmemory_force",2,"DEFAULT","DEFAULT","DEFAULT","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Force tables to be in-memory or not",,1497834589,1
3037,"inmemory_query",2,"ENABLE","ENABLE","ENABLE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Specifies whether in-memory queries are allowed",,2615592267,1
3040,"inmemory_expressions_usage",2,"ENABLE","ENABLE","ENABLE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Controls which In-Memory Expressions are populated in-memory",,619630228,1
3041,"inmemory_virtual_columns",2,"MANUAL","MANUAL","MANUAL","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Controls which user-defined virtual columns are stored in-memory",,3211758405,1
3057,"inmemory_max_populate_servers",3,"0","0","65535","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum inmemory populate servers",,294396442,1
3059,"inmemory_trickle_repopulate_servers_percent",3,"1","1","1","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","inmemory trickle repopulate servers percent",,1428503803,1
3126,"inmemory_optimized_arithmetic",2,"DISABLE","DISABLE","DISABLE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Controls whether or not DSBs are stored in-memory",,1107040518,1
3169,"inmemory_automatic_level",2,"OFF","OFF","OFF","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Enable Automatic In-Memory management",,3486375999,1
3272,"create_stored_outlines",2,,,,"TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","create stored outlines for DML statements",,4265209363,1
3276,"serial_reuse",2,"disable","disable","disable","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","reuse the frame segments",,319631122,1
3286,"ldap_directory_access",2,"NONE","NONE","NONE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","RDBMS's LDAP access option",,366357953,1
3288,"ldap_directory_sysauth",2,"no","no","no","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","TRUE","OID usage parameter",,3590721065,1
3289,"os_roles",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","retrieve roles from the operating system",,3783461165,1
3290,"rdbms_server_dn",2,,,"NONE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","RDBMS's Distinguished Name",,3271017715,1
3293,"remote_os_authent",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","allow non-secure remote clients to use auto-logon accounts",,1794288875,1
3294,"remote_os_roles",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","allow non-secure remote clients to use os roles",,1402234932,1
3296,"sec_case_sensitive_logon",1,"TRUE","TRUE","TRUE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","TRUE","FALSE","case sensitive password enabled for logon",,1474075370,1
3302,"remote_login_passwordfile",2,"EXCLUSIVE","EXCLUSIVE","exclusive","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","password file usage parameter",,3127891494,1
3303,"license_max_users",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum number of named users that can be created in the database",,849023886,1
3309,"audit_sys_operations",1,"FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","enable sys auditing",,2991425711,1
3315,"DBFIPS_140",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Enable use of crypographic libraries in FIPS mode, public",,2966734791,1
3316,"one_step_plugin_for_pdb_with_tde",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Facilitate one-step plugin for PDB with TDE encrypted data",,911791935,1
3317,"external_keystore_credential_location",2,,,"NONE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","external keystore credential location",,3445623151,1
3338,"unified_audit_sga_queue_size",3,"1048576","1048576","1048576","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","Size of Unified audit SGA Queue",,3223615522,1
3348,"wallet_root",2,,,"NONE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","wallet root instance initialization parameter",,335793798,1
3349,"tde_configuration",2,,,"NONE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Per-PDB configuration for Transparent Data Encryption",,2363583331,1
3351,"db_domain",2,,,,"TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","TRUE","directory part of global database name stored with CREATE DATABASE",,2669961844,1
3352,"global_names",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","enforce that database links have same name as remote database",,2700405834,1
3353,"distributed_lock_timeout",3,"60","60","60","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","number of seconds a distributed transaction waits for a lock",,842900040,1
3356,"commit_point_strength",3,"1","1","1","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","Bias this node has toward not preparing in a two-phase commit",,2235849826,1
3359,"global_txn_processes",3,"1","1","1","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","number of background global transaction processes to start",,1426614060,1
3370,"instance_name",2,"ORCLCDB","ORCLCDB",,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","instance name supported by the instance",,2256857119,1
3371,"dispatchers",2,"(PROTOCOL=TCP) (SERVICE=ORCLCDBXDB)","(PROTOCOL=TCP) (SERVICE=ORCLCDBXDB)",,"FALSE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","specifications of dispatchers",,2044337135,1
3372,"shared_servers",3,"1","1","4294967294","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","TRUE","number of shared servers to start up",,3176325557,1
3373,"max_shared_servers",3,,,,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","max number of shared servers",,2826600650,1
3374,"max_dispatchers",3,,,,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","max number of dispatchers",,1521154394,1
3375,"circuits",3,,,,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","max number of circuits",,4176376279,1
3376,"shared_server_sessions",3,,,,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","max number of shared server sessions",,3395071916,1
3392,"use_dedicated_broker",1,"FALSE","FALSE","TRUE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Use dedicated connection broker",,3036393081,1
3395,"connection_brokers",2,"((TYPE=DEDICATED)(BROKERS=1)), ((TYPE=EMON)(BROKERS=1))","((TYPE=DEDICATED)(BROKERS=1)), ((TYPE=EMON)(BROKERS=1))",,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","connection brokers specification","connection_brokers default value",1187202324,1
3399,"local_listener",2,,,,"FALSE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","local listener",,1166810346,1
3400,"forward_listener",2,,,,"TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","forward listener",,1488102093,1
3401,"remote_listener",2,,,,"TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","TRUE","remote listener",,3804628476,1
3402,"listener_networks",2,,,,"TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","listener registration networks",,131162088,1
3407,"cursor_space_for_time",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","FALSE","use more memory in order to get faster execution",,4277774490,1
3408,"session_cached_cursors",3,"50","50","50","TRUE","TRUE","DEFERRED","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Number of cursors to cache in a session.",,766615249,1
3420,"remote_dependencies_mode",2,"TIMESTAMP","TIMESTAMP","timestamp","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","remote-procedure-call dependencies mode parameter",,3590465749,1
3421,"smtp_out_server",2,,,,"TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","utl_smtp server and port configuration parameter",,3248157648,1
3423,"plsql_v2_compatibility",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","TRUE","FALSE","PL/SQL version 2.x compatibility flag",,3179637611,1
3425,"plsql_warnings",2,"DISABLE:ALL","DISABLE:ALL","NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","PL/SQL compiler warnings settings","PL/SQL warnings at init.ora",1215950514,1
3426,"plsql_code_type",2,"INTERPRETED","INTERPRETED","INTERPRETED","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","PL/SQL code-type",,2972627138,1
3428,"plsql_debug",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","TRUE","FALSE","PL/SQL debug",,2795594338,1
3429,"plsql_optimize_level",3,"2","2","2","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","PL/SQL optimize level",,818269884,1
3430,"plsql_ccflags",2,,,"NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","PL/SQL ccflags",,2398569109,1
3432,"plscope_settings",2,"IDENTIFIERS:NONE","IDENTIFIERS:NONE","IDENTIFIERS:NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","plscope_settings controls the compile time collection, cross reference, and storage of PL/SQL source code identifier and SQL statement data",,3026899342,1
3437,"permit_92_wrap_format",1,"TRUE","TRUE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","allow 9.2 or older wrap format in PL/SQL",,3263158038,1
3439,"java_jit_enabled",1,"TRUE","TRUE","TRUE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Java VM JIT enabled",,3091533831,1
3440,"java_restrict",2,"none","none","none","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Restrict Java VM Access",,3776423980,1
3441,"job_queue_processes",3,"80","80","4000","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum number of job queue slave processes","job queue processes default tuning",1663833312,1
3443,"scheduler_follow_pdbtz",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Make scheduler objects follow PDB TZ",,3752450639,1
3447,"parallel_min_percent",3,"0","0","0","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","minimum percent of threads required for parallel query",,2166267089,1
3453,"create_bitmap_area_size",3,"8388608","8388608","8388608","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","size of create bitmap buffer for bitmap index",,2520699331,1
3454,"bitmap_merge_area_size",3,"1048576","1048576","1048576","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","maximum memory allow for BITMAP MERGE",,1575972631,1
3458,"cursor_sharing",2,"EXACT","EXACT","EXACT","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","cursor sharing mode",,3355675594,1
3467,"result_cache_mode",2,"MANUAL","MANUAL","MANUAL","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","result cache operator usage mode",,866827446,1
3497,"parallel_min_servers",3,"8","8","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","minimum parallel query servers per instance",,759236997,1
3498,"parallel_max_servers",3,"80","80",,"TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum parallel query servers per instance",,3629921023,1
3503,"parallel_instance_group",2,,,"NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","instance group to use for all parallel operations",,1634530335,1
3512,"parallel_execution_message_size",3,"16384","16384",,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","message buffer size for parallel execution",,502422959,1
3524,"hash_area_size",3,"131072","131072","0","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","size of in-memory hash work area",,3018060907,1
3560,"private_temp_table_prefix",2,"ORA$PTT_","ORA$PTT_","ORA$PTT_","TRUE","FALSE","DEFERRED","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Private temporary table prefix",,3584456969,1
3564,"result_cache_max_size",6,"8060928","7872K","1","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum amount of memory to be used by the cache",,4221019766,1
3565,"result_cache_max_result",3,"5","5","5","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum result size as percent of cache size",,4174962580,1
3566,"result_cache_remote_expiration",3,"0","0","0","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum life time (min) for any result using a remote object",,2062733047,1
3610,"shadow_core_dump",2,"partial","partial","partial","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Core Size for Shadow Processes",,89911312,1
3611,"background_core_dump",2,"partial","partial","partial","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Core Size for Background Processes",,1863643544,1
3612,"background_dump_dest",2,"/opt/oracle/product/19c/dbhome_1/rdbms/log","/opt/oracle/product/19c/dbhome_1/rdbms/log","$ORACLE_BASE/admin/@/bdump","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","TRUE","FALSE","Detached process dump directory",,3665100166,1
3613,"user_dump_dest",2,"/opt/oracle/product/19c/dbhome_1/rdbms/log","/opt/oracle/product/19c/dbhome_1/rdbms/log","$ORACLE_BASE/admin/@/udump","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","TRUE","FALSE","User process dump directory",,2332088509,1
3614,"core_dump_dest",2,"/opt/oracle/diag/rdbms/orclcdb/ORCLCDB/cdump","/opt/oracle/diag/rdbms/orclcdb/ORCLCDB/cdump","$ORACLE_BASE/admin/@/cdump","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Core dump directory",,18033226,1
3624,"audit_file_dest",2,"/opt/oracle/admin/ORCLCDB/adump","/opt/oracle/admin/ORCLCDB/adump","$ORACLE_BASE/admin/@/adump","FALSE","FALSE","DEFERRED","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Directory in which auditing files are to reside",,2188534560,1
3625,"audit_syslog_level",2,,,,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Syslog facility and level",,1189300432,1
3626,"unified_audit_systemlog",2,,,,"TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","Syslog facility and level for Unified Audit",,1480938780,1
3627,"unified_audit_common_systemlog",2,,,,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Syslog facility and level for only common unified audit records",,1602228338,1
3637,"resource_manage_goldengate",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","goldengate resource manager enabled",,1718176322,1
3639,"object_cache_optimal_size",3,"10240000","10240000","10240000","TRUE","TRUE","DEFERRED","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","optimal size of the user session's object cache in bytes",,2564444157,1
3640,"object_cache_max_size_percent",3,"10","10","10","TRUE","TRUE","DEFERRED","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","percentage of maximum size over optimal of the user session's object cache",,3695573432,1
3642,"lob_signature_enable",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","enable lob signature",,2805186386,1
3645,"session_max_open_files",3,"10","10","10","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","maximum number of open files allowed per session",,3334892241,1
3653,"open_links",3,"4","4","4","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","max # open links per session",,3842870833,1
3654,"open_links_per_instance",3,"4","4","4","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","max # open links per instance",,1931961830,1
3659,"commit_write",2,,,,"TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","TRUE","FALSE","transaction commit log write behaviour",,4194277916,1
3660,"commit_wait",2,,,,"TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","transaction commit log wait behaviour",,3338003716,1
3661,"commit_logging",2,,,,"TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","transaction commit log write behaviour",,1056517785,1
3663,"optimizer_features_enable",2,"19.1.0","19.1.0","19.1.0","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","optimizer plan compatibility parameter",,2759770534,1
3664,"fixed_date",2,,,"NONE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","fixed SYSDATE value",,48917745,1
3665,"audit_trail",2,"NONE","NONE","none","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","enable system auditing",,4289193100,1
3666,"sort_area_size",3,"65536","65536","65536","TRUE","TRUE","DEFERRED","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","size of in-memory sort work area",,2099108347,1
3667,"sort_area_retained_size",3,"0","0","0","TRUE","TRUE","DEFERRED","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","size of in-memory sort work area retained between fetch calls",,3312265650,1
3682,"cell_offload_processing",1,"TRUE","TRUE","TRUE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","enable SQL processing offload to cells",,3671696352,1
3685,"cell_offload_decryption",1,"TRUE","TRUE","TRUE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","enable SQL processing offload of encrypted data to cells",,1760070659,1
3686,"cell_offload_parameters",2,,,"NONE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Additional cell offload parameters",,2383178748,1
3687,"cell_offload_compaction",2,"ADAPTIVE","ADAPTIVE","ADAPTIVE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Cell packet compaction strategy",,3388561534,1
3688,"cell_offload_plan_display",2,"AUTO","AUTO","AUTO","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Cell offload explain plan display",,1313668841,1
3693,"db_name",2,"ORCLCDB","ORCLCDB","NONE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","database name specified in CREATE DATABASE",,704871292,1
3694,"db_unique_name",2,"ORCLCDB","ORCLCDB","NONE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","TRUE","Database Unique Name",,2994684304,1
3695,"open_cursors",3,"300","300","50","FALSE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","TRUE","max # cursors per session",,4033294835,1
3696,"ifile",4,,,,"TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","include file in init.ora",,636214420,1
3697,"sql_trace",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","TRUE","FALSE","enable SQL trace",,750089050,1
3698,"os_authent_prefix",2,"ops$","ops$","ops$","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","prefix for auto-logon accounts",,4201741605,1
3700,"optimizer_mode",2,"ALL_ROWS","ALL_ROWS","all_rows","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","optimizer mode",,487657984,1
3705,"sql92_security",1,"TRUE","TRUE","TRUE","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","require select privilege for searched update/delete",,2745708589,1
3708,"blank_trimming",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","blank trimming semantics parameter",,1367606241,1
3715,"star_transformation_enabled",2,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","TRUE","enable the use of star transformation",,1860374294,1
3759,"parallel_degree_policy",2,"MANUAL","MANUAL","MANUAL","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","policy used to compute the degree of parallelism (MANUAL/LIMITED/AUTO/ADAPTIVE)",,1979359697,1
3769,"parallel_adaptive_multi_user",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","TRUE","FALSE","enable adaptive setting of degree for multiple user streams",,1602823864,1
3770,"parallel_threads_per_cpu",3,"1","1","1","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","number of parallel execution threads per CPU",,1020981983,1
3796,"optimizer_index_cost_adj",3,"100","100","100","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","optimizer index cost adjustment",,3753899412,1
3797,"optimizer_index_caching",3,"0","0","0","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","optimizer percent index caching",,699019442,1
3809,"query_rewrite_enabled",2,"TRUE","TRUE","true","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","allow rewrite of queries using materialized views if enabled",,3941771694,1
3810,"query_rewrite_integrity",2,"enforced","enforced","enforced","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","perform rewrite using materialized views with desired integrity",,485484145,1
3868,"pga_aggregate_target",6,"536870912","512M","0","FALSE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","TRUE","Target size for the aggregate PGA memory consumed by the instance",,2184567208,1
3871,"workarea_size_policy",2,"AUTO","AUTO","AUTO","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","policy used to size SQL working areas (MANUAL/AUTO)",,4004437305,1
3896,"optimizer_dynamic_sampling",3,"2","2","2","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","optimizer dynamic sampling",,549852465,1
3926,"statistics_level",2,"TYPICAL","TYPICAL","TYPICAL","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","statistics level",,3696230136,1
3946,"cursor_bind_capture_destination",2,"memory+disk","memory+disk","memory+disk","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Allowed destination for captured bind variables",,766397948,1
3964,"skip_unusable_indexes",1,"TRUE","TRUE","TRUE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","skip unusable indexes if set to TRUE",,3916780315,1
4002,"optimizer_ignore_hints",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","enables the embedded hints to be ignored",,3499641983,1
4055,"optimizer_secure_view_merging",1,"TRUE","TRUE","TRUE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","optimizer secure view merging and predicate pushdown/movearound",,2261060089,1
4099,"ddl_lock_timeout",3,"0","0","0","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","timeout to restrict the time that ddls wait for dml lock",,2606707053,1
4101,"deferred_segment_creation",1,"TRUE","TRUE","TRUE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","defer segment creation to first insert",,2736380908,1
4109,"optimizer_use_pending_statistics",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Control whether to use optimizer pending statistics",,244859984,1
4113,"optimizer_capture_sql_plan_baselines",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","automatic capture of SQL plan baselines for repeatable statements",,147559078,1
4114,"optimizer_use_sql_plan_baselines",1,"TRUE","TRUE","TRUE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","use of SQL plan baselines for captured sql statements",,2379667345,1
4141,"parallel_min_time_threshold",2,"AUTO","AUTO","AUTO","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","threshold above which a plan is a candidate for parallelization (in seconds)",,1842587524,1
4143,"parallel_degree_limit",2,"CPU","CPU","CPU","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","limit placed on degree of parallelism",,3004872640,1
4144,"parallel_force_local",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","force single instance execution",,1406010451,1
4151,"optimizer_use_invisible_indexes",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Usage of invisible indexes (TRUE/FALSE)",,1348858726,1
4175,"dst_upgrade_insert_conv",1,"TRUE","TRUE","TRUE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Enables/Disables internal conversions during DST upgrade",,2379457992,1
4180,"parallel_servers_target",3,"80","80","0","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","instance target in terms of number of parallel servers",,3701086916,1
4226,"max_string_size",2,"STANDARD","STANDARD","STANDARD","TRUE","FALSE","IMMEDIATE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","controls maximum size of VARCHAR2, NVARCHAR2, and RAW types in SQL",,832604811,1
4254,"optimizer_adaptive_reporting_only",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","use reporting-only mode for adaptive optimizations",,3779184761,1
4285,"optimizer_adaptive_plans",1,"TRUE","TRUE","TRUE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","controls all types of adaptive plans",,2052942567,1
4345,"optimizer_inmemory_aware",1,"TRUE","TRUE","TRUE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","optimizer in-memory columnar awareness",,4101747567,1
4389,"cursor_invalidation",2,"IMMEDIATE","IMMEDIATE","IMMEDIATE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","default for DDL cursor invalidation semantics",,233636923,1
4394,"approx_for_aggregation",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Replace exact aggregation with approximate aggregation",,1811015687,1
4395,"approx_for_count_distinct",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Replace count distinct with approx_count_distinct",,30269921,1
4427,"approx_for_percentile",2,"none","none","none","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Replace percentile_* with approx_percentile",,855482260,1
4441,"optimizer_adaptive_statistics",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","controls all types of adaptive statistics",,2479624794,1
4459,"optimizer_ignore_parallel_hints",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","enables embedded parallel hints to be ignored",,1469908346,1
4467,"parallel_min_degree",2,"1","1","1","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","controls the minimum DOP computed by Auto DOP",,564144041,1
4517,"sec_protocol_error_trace_action",2,"TRACE","TRACE","TRACE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","TTC protocol error action",,1358668447,1
4518,"sec_protocol_error_further_action",2,"(DROP,3)","(DROP,3)","(DROP,3)","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","TTC protocol error continue action",,3049131826,1
4520,"sec_max_failed_login_attempts",3,"3","3","3","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","maximum number of failed login attempts on a connection",,121837060,1
4521,"sec_return_server_release_banner",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","whether the server retruns the complete version information",,3794764196,1
4524,"enable_ddl_logging",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","enable ddl logging",,2442221836,1
4527,"client_result_cache_size",6,"0","0","0","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","client result cache max size in bytes",,3890547889,1
4528,"client_result_cache_lag",6,"3000","3000","3000","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","client result cache maximum lag in milliseconds",,1078110587,1
4556,"outbound_dblink_protocols",2,"ALL","ALL","ALL","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Outbound DBLINK Protocols allowed",,3411337539,1
4557,"allow_global_dblinks",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","LDAP lookup for DBLINKS",,861057877,1
4564,"client_statistics_level",2,"TYPICAL","TYPICAL","TYPICAL","TRUE","FALSE","DEFERRED","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Client Statistics Level",,3743616278,1
4576,"aq_tm_processes",3,"1","1","1","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","number of AQ Time Managers to start",,2948523121,1
4645,"hs_autoregister",1,"TRUE","TRUE","TRUE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","enable automatic server DD updates in HS agent self-registration",,3959246632,1
4648,"xml_db_events",2,"enable","enable","enable","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","are XML DB events enabled",,2688671432,1
4649,"dg_broker_start",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","start Data Guard broker (DMON process)",,2843461333,1
4650,"dg_broker_config_file1",2,"/opt/oracle/product/19c/dbhome_1/dbs/dr1ORCLCDB.dat","/opt/oracle/product/19c/dbhome_1/dbs/dr1ORCLCDB.dat",,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","data guard broker configuration file #1",,2265440370,1
4651,"dg_broker_config_file2",2,"/opt/oracle/product/19c/dbhome_1/dbs/dr2ORCLCDB.dat","/opt/oracle/product/19c/dbhome_1/dbs/dr2ORCLCDB.dat",,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","data guard broker configuration file #2",,2561076650,1
4663,"olap_page_pool_size",6,"0","0","0","TRUE","TRUE","DEFERRED","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","size of the olap page pool in bytes",,3715775675,1
4770,"asm_diskstring",2,,,,"TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","disk set locations for discovery",,2084877408,1
4772,"asm_preferred_read_failure_groups",2,,,,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","TRUE","FALSE","preferred read failure groups",,1510746396,1
4966,"control_management_pack_access",2,"DIAGNOSTIC+TUNING","DIAGNOSTIC+TUNING","DIAGNOSTIC+TUNING","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","declares which manageability packs are enabled",,1240641681,1
4992,"awr_pdb_autoflush_enabled",1,"FALSE","FALSE","FALSE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Enable/Disable AWR automatic PDB flushing",,944458775,1
4993,"awr_pdb_max_parallel_slaves",3,"10","10","10","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","maximum concurrent AWR PDB MMON slaves per instance",,170462395,1
4996,"awr_snapshot_time_offset",3,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Setting for AWR Snapshot Time Offset",,3285753433,1
5005,"sqltune_category",2,"DEFAULT","DEFAULT","DEFAULT","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Category qualifier for applying hintsets",,161860720,1
5043,"autotask_max_active_pdbs",3,"2","2","2","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Setting for Autotask Maximum Maintenance PDBs",,193966638,1
5044,"enable_automatic_maintenance_pdb",1,"TRUE","TRUE","TRUE","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Enable/Disable Automated Maintenance for Non-Root PDB",,229256255,1
5077,"spatial_vector_acceleration",1,"FALSE","FALSE","FALSE","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","enable spatial vector acceleration",,1203174869,1
5081,"diagnostic_dest",2,"/opt/oracle","/opt/oracle","?#/log","FALSE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","diagnostic base directory",,3957361937,1
5115,"tracefile_identifier",2,,,,"TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","trace file custom identifier",,978134115,1
5117,"max_dump_file_size",2,"unlimited","unlimited","unlimited","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Maximum size (in bytes) of dump file",,1271961010,1
5131,"trace_enabled",1,"TRUE","TRUE","TRUE","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","enable in memory tracing",,1583875908,1
5147,"cell_offloadgroup_name",2,,,,"TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Set the offload group name",,2577808808,1
5158,"enable_pluggable_database",1,"TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Enable Pluggable Database",,515850361,1
5162,"pdb_os_credential",2,,,,"TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","pluggable database OS credential to bind",,1858916307,1
5163,"pdb_file_name_convert",2,,,,"TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","PDB file name convert patterns and strings for create cdb/pdb",,2311016676,1
5166,"noncdb_compatible",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Non-CDB Compatible",,2594626030,1
5169,"common_user_prefix",2,"C##","C##","NONE","TRUE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","Enforce restriction on a prefix of a Common User/Role/Profile name",,1614452063,1
5177,"target_pdbs",3,"3","3","1","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","Parameter is a hint to adjust certain attributes of the CDB",,256241361,1
5178,"max_pdbs",3,"254","254","4098","TRUE","FALSE","IMMEDIATE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","max number of pdbs allowed in CDB or Application ROOT",,1010400604,1
5185,"cdb_cluster",1,"FALSE","FALSE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","if TRUE startup in CDB Cluster mode",,2200453584,1
5186,"cdb_cluster_name",2,,,"NONE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","FALSE","CDB Cluster name",,1639532350,1
5189,"standby_pdb_source_file_directory",2,,,,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","standby source file directory location",,990771014,1
5190,"standby_pdb_source_file_dblink",2,,,,"TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","database link to standby source files",,3758932138,1
5195,"remote_recovery_file_dest",2,,,"NONE","TRUE","FALSE","IMMEDIATE","TRUE","FALSE","FALSE","FALSE","FALSE","FALSE","default remote database recovery file location for refresh/relocate",,3589523542,1
5196,"disable_pdb_feature",6,"0","0","0","TRUE","FALSE","IMMEDIATE","FALSE","TRUE","FALSE","FALSE","FALSE","FALSE","Disable features",,2963331633,1
5228,"containers_parallel_degree",3,"65535","65535","65535","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Parallel degree for a CONTAINERS() query",,54876967,1
5245,"default_sharing",2,"metadata","metadata","metadata","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","Default sharing clause",,3481738328,1
5274,"pdb_lockdown",2,,,,"TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","pluggable database lockdown profile",,2811081377,1
5282,"pdb_template",2,,,,"TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","PDB template",,477875923,1
5296,"shrd_dupl_table_refresh_rate",3,"60","60","60","TRUE","FALSE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","duplicated table refresh rate (in seconds)",,1277469149,1
5328,"multishard_query_data_consistency",2,"strong","strong","strong","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","consistency setting for multishard queries",,2534037010,1
5329,"multishard_query_partial_results",2,"not allowed","not allowed","not allowed","TRUE","TRUE","IMMEDIATE","TRUE","TRUE","FALSE","FALSE","FALSE","FALSE","enable partial results for multishard queries",,161456481,1
1 NUM NAME TYPE VALUE DISPLAY_VALUE DEFAULT_VALUE ISDEFAULT ISSES_MODIFIABLE ISSYS_MODIFIABLE ISPDB_MODIFIABLE ISINSTANCE_MODIFIABLE ISMODIFIED ISADJUSTED ISDEPRECATED ISBASIC DESCRIPTION UPDATE_COMMENT HASH CON_ID
2 52 lock_name_space 2 TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE lock name space used for generating lock names for standby/clone database 1022980314 1
3 53 processes 3 320 320 0 FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE TRUE user processes 4162014761 1
4 54 sessions 3 504 504 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE TRUE user and system sessions 3194028855 1
5 71 timed_statistics 1 TRUE TRUE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE maintain internal timing statistics 2224114877 1
6 72 timed_os_statistics 3 0 0 0 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE internal os statistic gathering interval in seconds 2425331770 1
7 73 resource_limit 1 TRUE TRUE TRUE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE master switch for resource limit 19363908 1
8 74 license_max_sessions 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE maximum number of non-system user sessions allowed 2409810571 1
9 75 license_sessions_warning 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE warning level for number of non-system user sessions 4168462818 1
10 84 long_module_action 1 TRUE TRUE TRUE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Use longer module and action 3000737841 1
11 106 standby_db_preserve_states 2 NONE NONE NONE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Preserve state cross standby role transition 1862199831 1
12 110 instance_abort_delay_time 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE time to delay an internal initiated abort (in seconds) 2964226596 1
13 125 cpu_count 3 4 4 0 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE maximum number of CPUs 1095434542 1
14 126 cpu_min_count 2 4 4 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE minimum number of CPUs required 4228462918 1
15 136 instance_groups 2 TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE list of instance group names 714080904 1
16 145 event 2 NONE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE debug event control - default null string 557769962 1
17 160 sga_max_size 6 1610612736 1536M 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE max total SGA size internally adjusted 3640569645 1
18 167 use_large_pages 2 TRUE TRUE TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Use large pages if available (TRUE/FALSE/ONLY) 3303635063 1
19 176 pre_page_sga 1 TRUE TRUE TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE pre-page sga for process 4157293338 1
20 177 shared_memory_address 3 0 0 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE SGA starting address (low order 32-bits on 64-bit platforms) 1147088340 1
21 178 hi_shared_memory_address 3 0 0 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE SGA starting address (high order 32-bits on 64-bit platforms) 2467282562 1
22 180 lock_sga 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Lock entire SGA in physical memory 3105560606 1
23 234 processor_group_name 2 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Name of the processor group that this instance should run in. 3670365524 1
24 264 allow_group_access_to_sga 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Allow read access for SGA to users of Oracle owner group 1282645390 1
25 274 sga_min_size 6 0 0 0 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Minimum, guaranteed size of PDB's SGA 1499658341 1
26 277 shared_pool_size 6 0 0 134217728 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE size in bytes of shared pool 1378805370 1
27 279 large_pool_size 6 0 0 134217728 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE size in bytes of large pool 4033299612 1
28 281 java_pool_size 6 0 0 25165824 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE size in bytes of java pool 682389752 1
29 283 streams_pool_size 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE size in bytes of the streams pool 4113905875 1
30 287 shared_pool_reserved_size 6 19293798 19293798 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE size in bytes of reserved area of shared pool 3099794371 1
31 290 java_soft_sessionspace_limit 3 0 0 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE warning limit on size in bytes of a Java sessionspace 2289238341 1
32 291 java_max_sessionspace_size 3 0 0 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE max allowed size in bytes of a Java sessionspace 2976582011 1
33 293 pga_aggregate_limit 6 2147483648 2G 0 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE limit of aggregate PGA memory for the instance or PDB 473987584 1
34 316 spfile 2 /opt/oracle/product/19c/dbhome_1/dbs/spfileORCLCDB.ora /opt/oracle/product/19c/dbhome_1/dbs/spfileORCLCDB.ora NONE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE server parameter file 3653611964 1
35 317 instance_type 2 RDBMS RDBMS RDBMS TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE type of instance to be executed 3061809694 1
36 331 uniform_log_timestamp_format 1 TRUE TRUE TRUE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE use uniform timestamp formats vs pre-12.2 formats 4010398416 1
37 368 nls_language 2 AMERICAN AMERICAN AMERICAN FALSE TRUE FALSE TRUE FALSE FALSE FALSE FALSE TRUE NLS language name 3485237129 1
38 369 nls_territory 2 AMERICA AMERICA AMERICA FALSE TRUE FALSE TRUE FALSE FALSE FALSE FALSE TRUE NLS territory name 4101776966 1
39 370 nls_sort 2 NONE TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE NLS linguistic definition name 1540560305 1
40 371 nls_date_language 2 NONE TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE NLS date language name 1568340031 1
41 372 nls_date_format 2 NONE TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE NLS Oracle date format 677968994 1
42 373 nls_currency 2 NONE TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE NLS local currency symbol 1866631167 1
43 374 nls_numeric_characters 2 NONE TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE NLS numeric characters 1350504691 1
44 375 nls_iso_currency 2 NONE TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE NLS ISO currency territory name 1902084911 1
45 376 nls_calendar 2 NONE TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE NLS calendar system name 600406646 1
46 377 nls_time_format 2 NONE TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE time format 279591871 1
47 378 nls_timestamp_format 2 NONE TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE time stamp format 1867855122 1
48 379 nls_time_tz_format 2 NONE TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE time with timezone format 3395216182 1
49 380 nls_timestamp_tz_format 2 NONE TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE timestamp with timezone format 197674624 1
50 381 nls_dual_currency 2 NONE TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE Dual currency symbol 3671532261 1
51 382 nls_comp 2 BINARY BINARY BINARY TRUE TRUE FALSE TRUE FALSE FALSE FALSE FALSE FALSE NLS comparison 2564149862 1
52 383 nls_length_semantics 2 BYTE BYTE BYTE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE create columns using byte or char semantics by default 726541850 1
53 384 nls_nchar_conv_excp 2 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE NLS raise an exception instead of allowing implicit conversion 928612038 1
54 389 disk_asynch_io 1 TRUE TRUE TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Use asynch I/O for random access devices 629465343 1
55 390 tape_asynch_io 1 TRUE TRUE TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Use asynch I/O requests for tape devices 4219463829 1
56 392 dbwr_io_slaves 3 0 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE DBWR I/O slaves 3394903742 1
57 396 backup_tape_io_slaves 1 FALSE FALSE FALSE TRUE FALSE DEFERRED FALSE TRUE FALSE FALSE FALSE FALSE BACKUP Tape I/O slaves 3484415485 1
58 404 fileio_network_adapters 2 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Network Adapters for File I/O 3529525450 1
59 406 filesystemio_options 2 none none asynch TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE IO operations on filesystem files 752770605 1
60 407 dnfs_batch_size 3 4096 4096 4096 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Max number of dNFS asynch I/O requests queued per session 1994133209 1
61 422 clonedb 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE clone database 928499171 1
62 423 instant_restore 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE instant repopulation of datafiles 4142333245 1
63 433 http_proxy 2 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE http_proxy 3663661791 1
64 434 ssl_wallet 2 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE ssl_wallet 2995267759 1
65 439 ofs_threads 3 4 4 4 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Number of OFS threads 1131849260 1
66 452 resource_manager_cpu_allocation 3 4 4 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE TRUE FALSE Resource Manager CPU allocation 2295969896 1
67 454 resource_manager_plan 2 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE resource mgr top plan 771115908 1
68 472 db_performance_profile 2 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Database performance category 3630520311 1
69 476 max_iops 3 0 0 0 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE MAX IO per second 533109382 1
70 477 max_mbps 3 0 0 0 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE MAX MB per second 3697729492 1
71 480 max_idle_time 3 0 0 0 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE maximum session idle time in minutes 1802489217 1
72 481 max_idle_blocker_time 3 0 0 0 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE maximum idle time for a blocking session in minutes 290450916 1
73 763 cluster_interconnects 2 NONE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE interconnects for RAC use 453198651 1
74 836 file_mapping 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE enable file mapping 232153461 1
75 844 max_datapump_jobs_per_pdb 2 100 100 100 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE maximum number of concurrent Data Pump Jobs per PDB 2176709606 1
76 845 max_datapump_parallel_per_job 2 50 50 50 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE maximum number of parallel processes per Data Pump Job 1889722817 1
77 847 service_names 2 ORCLCDB ORCLCDB TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE service names supported by the instance 715667293 1
78 866 threaded_execution 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Threaded Execution Mode 606669933 1
79 952 clonedb_dir 2 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE CloneDB Directory 924431809 1
80 963 enable_dnfs_dispatcher 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Enable DNFS Dispatcher 1212402461 1
81 1074 gcs_server_processes 3 0 0 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE number of background gcs server processes to start 3586934196 1
82 1091 active_instance_count 3 TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE number of active instances in the cluster database 1385697455 1
83 1238 instance_mode 2 READ-WRITE READ-WRITE read-write TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE indicates whether the instance read-only or read-write or read-mostly 2136961442 1
84 1558 sga_target 6 1610612736 1536M 0 FALSE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE TRUE Target size of SGA 3134551790 1
85 1560 memory_target 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Target size of Oracle SGA and PGA memory 1127054141 1
86 1561 memory_max_target 6 0 0 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Max size for Memory Target 3306918234 1
87 1595 control_files 2 /opt/oracle/oradata/ORCLCDB/control01.ctl /opt/oracle/oradata/ORCLCDB/control01.ctl ?=/dbs/cntrl@.dbf FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE TRUE control file names list 2567365799 1
88 1604 db_file_name_convert 2 TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE datafile name convert patterns and strings for standby/clone db 2967069573 1
89 1605 log_file_name_convert 2 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE logfile name convert patterns and strings for standby/clone db 3861982543 1
90 1606 control_file_record_keep_time 3 7 7 7 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE control file record keep time in days 98688804 1
91 1613 db_block_buffers 3 0 0 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE Number of database blocks cached in memory 2234540729 1
92 1617 db_block_checksum 2 TYPICAL TYPICAL TYPICAL TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE store checksum in db blocks and check during reads 236379301 1
93 1618 db_ultra_safe 2 OFF OFF OFF TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Sets defaults for other parameters that control protection levels 93442106 1
94 1619 db_block_size 3 8192 8192 8192 FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE TRUE Size of database block in bytes 3433134853 1
95 1634 db_cache_size 6 0 0 0 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Size of DEFAULT buffer pool for standard block size buffers 1878231416 1
96 1636 db_2k_cache_size 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Size of cache for 2K buffers 1251260559 1
97 1637 db_4k_cache_size 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Size of cache for 4K buffers 2460170291 1
98 1638 db_8k_cache_size 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Size of cache for 8K buffers 1564706367 1
99 1639 db_16k_cache_size 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Size of cache for 16K buffers 1652300362 1
100 1640 db_32k_cache_size 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Size of cache for 32K buffers 63005144 1
101 1641 db_keep_cache_size 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Size of KEEP buffer pool for standard block size buffers 1851163622 1
102 1642 db_recycle_cache_size 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Size of RECYCLE buffer pool for standard block size buffers 409865660 1
103 1643 memoptimize_pool_size 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Size of cache for imoltp buffers 822772958 1
104 1648 db_big_table_cache_percent_target 2 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Big table cache target size in percentage 2539063750 1
105 1668 encrypt_new_tablespaces 2 CLOUD_ONLY CLOUD_ONLY CLOUD_ONLY TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE whether to encrypt newly created tablespaces 2650595996 1
106 1678 db_writer_processes 3 1 1 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE number of background database writer processes to start 2675391963 1
107 1707 buffer_pool_keep 2 NONE TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE Number of database blocks/latches in keep buffer pool 4221146327 1
108 1708 buffer_pool_recycle 2 NONE TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE Number of database blocks/latches in recycle buffer pool 243965399 1
109 1771 db_flash_cache_file 2 NONE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE flash cache file for default block size 2154593857 1
110 1772 db_flash_cache_size 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE flash cache size for db_flash_cache_file 2662488753 1
111 1825 db_cache_advice 2 ON ON OFF TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Buffer cache sizing advisory 76537751 1
112 1845 compatible 2 19.0.0 19.0.0 FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE TRUE Database will be completely compatible with this software version 2586206788 1
113 1865 log_archive_dest_1 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE TRUE archival destination #1 text string 2668113655 1
114 1866 log_archive_dest_2 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE TRUE archival destination #2 text string 993174268 1
115 1867 log_archive_dest_3 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #3 text string 4019416444 1
116 1868 log_archive_dest_4 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #4 text string 4076933173 1
117 1869 log_archive_dest_5 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #5 text string 2983371913 1
118 1870 log_archive_dest_6 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #6 text string 3163254911 1
119 1871 log_archive_dest_7 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #7 text string 1195731386 1
120 1872 log_archive_dest_8 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #8 text string 1294131998 1
121 1873 log_archive_dest_9 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #9 text string 2975895765 1
122 1874 log_archive_dest_10 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #10 text string 4052929217 1
123 1875 log_archive_dest_11 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #11 text string 250996408 1
124 1876 log_archive_dest_12 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #12 text string 2055242793 1
125 1877 log_archive_dest_13 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #13 text string 3129541886 1
126 1878 log_archive_dest_14 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #14 text string 646973396 1
127 1879 log_archive_dest_15 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #15 text string 2102065363 1
128 1880 log_archive_dest_16 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #16 text string 3433075299 1
129 1881 log_archive_dest_17 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #17 text string 3605958982 1
130 1882 log_archive_dest_18 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #18 text string 2185923656 1
131 1883 log_archive_dest_19 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #19 text string 3460444459 1
132 1884 log_archive_dest_20 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #20 text string 4223402204 1
133 1885 log_archive_dest_21 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #21 text string 1524973738 1
134 1886 log_archive_dest_22 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #22 text string 2302788208 1
135 1887 log_archive_dest_23 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #23 text string 428356674 1
136 1888 log_archive_dest_24 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #24 text string 875888895 1
137 1889 log_archive_dest_25 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #25 text string 2545053957 1
138 1890 log_archive_dest_26 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #26 text string 1817558786 1
139 1891 log_archive_dest_27 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #27 text string 4097113290 1
140 1892 log_archive_dest_28 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #28 text string 1607184325 1
141 1893 log_archive_dest_29 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #29 text string 3817697632 1
142 1894 log_archive_dest_30 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #30 text string 2615509879 1
143 1895 log_archive_dest_31 2 NONE TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #31 text string 3017163142 1
144 1896 log_archive_dest_state_1 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE TRUE archival destination #1 state text string 2730384854 1
145 1897 log_archive_dest_state_2 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE TRUE archival destination #2 state text string 148092523 1
146 1898 log_archive_dest_state_3 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #3 state text string 2513869874 1
147 1899 log_archive_dest_state_4 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #4 state text string 3691366817 1
148 1900 log_archive_dest_state_5 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #5 state text string 3081952655 1
149 1901 log_archive_dest_state_6 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #6 state text string 304021296 1
150 1902 log_archive_dest_state_7 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #7 state text string 3630253584 1
151 1903 log_archive_dest_state_8 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #8 state text string 3554679994 1
152 1904 log_archive_dest_state_9 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #9 state text string 1436305019 1
153 1905 log_archive_dest_state_10 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #10 state text string 1751244906 1
154 1906 log_archive_dest_state_11 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #11 state text string 2886606469 1
155 1907 log_archive_dest_state_12 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #12 state text string 3304517691 1
156 1908 log_archive_dest_state_13 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #13 state text string 2269052938 1
157 1909 log_archive_dest_state_14 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #14 state text string 2727699920 1
158 1910 log_archive_dest_state_15 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #15 state text string 2514322449 1
159 1911 log_archive_dest_state_16 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #16 state text string 2187424721 1
160 1912 log_archive_dest_state_17 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #17 state text string 1347081708 1
161 1913 log_archive_dest_state_18 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #18 state text string 2558416988 1
162 1914 log_archive_dest_state_19 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #19 state text string 1838072217 1
163 1915 log_archive_dest_state_20 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #20 state text string 2897696991 1
164 1916 log_archive_dest_state_21 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #21 state text string 1810950964 1
165 1917 log_archive_dest_state_22 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #22 state text string 3965758431 1
166 1918 log_archive_dest_state_23 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #23 state text string 1640771709 1
167 1919 log_archive_dest_state_24 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #24 state text string 312358666 1
168 1920 log_archive_dest_state_25 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #25 state text string 2480335086 1
169 1921 log_archive_dest_state_26 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #26 state text string 2373194801 1
170 1922 log_archive_dest_state_27 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #27 state text string 3084460413 1
171 1923 log_archive_dest_state_28 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #28 state text string 1760097473 1
172 1924 log_archive_dest_state_29 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #29 state text string 2023610917 1
173 1925 log_archive_dest_state_30 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #30 state text string 2972207749 1
174 1926 log_archive_dest_state_31 2 enable enable enable TRUE TRUE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination #31 state text string 4128759905 1
175 1927 log_archive_start 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE start archival process on SGA initialization 952772995 1
176 1928 log_archive_dest 2 NONE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE archival destination text string 2428527576 1
177 1929 log_archive_duplex_dest 2 NONE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE duplex archival destination text string 3687644184 1
178 1930 log_archive_min_succeed_dest 3 1 1 1 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE minimum number of archive destinations that must succeed 3835057806 1
179 1935 fal_client 2 NONE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE FAL client 1512728298 1
180 1936 fal_server 2 NONE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE FAL server list 72419950 1
181 1938 log_archive_trace 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Establish archive operation tracing level 967210318 1
182 1948 data_guard_sync_latency 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Data Guard SYNC latency 1162850028 1
183 1955 log_archive_config 2 NONE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE log archive config 1745268181 1
184 1959 log_archive_format 2 %t_%s_%r.dbf %t_%s_%r.dbf %t_%s_%r.dbf TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE archival destination format 267180648 1
185 1960 data_guard_max_io_time 3 240 240 240 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE maximum I/O time before process considered hung 2540830474 1
186 1961 data_guard_max_longio_time 3 240 240 240 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE maximum long I/O time before process considered hung 3495862319 1
187 1975 redo_transport_user 2 NONE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Data Guard transport user when using password file 2619943614 1
188 1980 log_archive_max_processes 3 4 4 4 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE maximum number of active ARCH processes 3132953756 1
189 1998 log_buffer 6 7307264 7136K 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE redo circular buffer size log buffer update 1173026923 1
190 2004 log_checkpoint_interval 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE # redo blocks checkpoint threshold 421865232 1
191 2005 log_checkpoint_timeout 3 1800 1800 1800 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Maximum time interval between checkpoints in seconds 1325866608 1
192 2007 archive_lag_target 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Maximum number of seconds of redos the standby could lose 592789495 1
193 2069 db_files 3 200 200 200 TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE max allowable # db files 314572703 1
194 2070 db_file_multiblock_read_count 3 128 128 0 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE db block to be read each IO 1428169303 1
195 2074 read_only_open_delayed 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE if TRUE delay opening of read only files until first access 3134028732 1
196 2075 cluster_database 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE TRUE if TRUE startup in cluster database mode 3044213568 1
197 2076 cluster_database_instances 3 1 1 TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE number of instances to use for sizing cluster db SGA structures 2296134110 1
198 2077 db_create_file_dest 2 NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE TRUE default database location 203090614 1
199 2078 db_create_online_log_dest_1 2 NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE TRUE online log/controlfile destination #1 1631516011 1
200 2079 db_create_online_log_dest_2 2 NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE TRUE online log/controlfile destination #2 563999388 1
201 2080 db_create_online_log_dest_3 2 NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE online log/controlfile destination #3 1878635215 1
202 2081 db_create_online_log_dest_4 2 NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE online log/controlfile destination #4 2503927821 1
203 2082 db_create_online_log_dest_5 2 NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE online log/controlfile destination #5 1433039549 1
204 2083 db_recovery_file_dest 2 NONE TRUE FALSE IMMEDIATE FALSE FALSE FALSE FALSE FALSE TRUE default database recovery file location 3387568471 1
205 2084 db_recovery_file_dest_size 6 0 0 0 TRUE FALSE IMMEDIATE FALSE FALSE FALSE FALSE FALSE TRUE database recovery files size limit 1541539076 1
206 2086 standby_file_management 2 MANUAL MANUAL MANUAL TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE if auto then files are created/dropped automatically on standby 3958066716 1
207 2186 db_unrecoverable_scn_tracking 1 TRUE TRUE TRUE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Track nologging SCN in controlfile 1772971972 1
208 2191 thread 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Redo thread to mount 2684606808 1
209 2199 enabled_PDBs_on_standby 2 * * * TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE List of Enabled PDB patterns 4147752604 1
210 2202 fast_start_io_target 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE TRUE FALSE Upper bound on recovery reads 1445495989 1
211 2203 fast_start_mttr_target 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE MTTR target in seconds 3666596407 1
212 2210 log_checkpoints_to_alert 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE log checkpoint begin/end to alert file 1565101272 1
213 2211 db_lost_write_protect 2 NONE NONE NONE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE enable lost write detection 1160013993 1
214 2232 recovery_parallelism 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE number of server processes to use for parallel recovery 4261073806 1
215 2315 enable_goldengate_replication 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE FALSE FALSE FALSE FALSE FALSE FALSE goldengate replication enabled 1531782384 1
216 2353 inmemory_adg_enabled 1 TRUE TRUE TRUE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Enable IMC support on ADG 855648782 1
217 2384 db_flashback_retention_target 3 1440 1440 1440 TRUE FALSE IMMEDIATE FALSE FALSE FALSE FALSE FALSE FALSE Maximum Flashback Database log retention time in minutes. 2211957778 1
218 2524 data_transfer_cache_size 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Size of data transfer cache 2667697950 1
219 2532 enable_imc_with_mira 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE enable IMC with multi instance redo apply 585287948 1
220 2544 adg_account_info_tracking 2 LOCAL LOCAL LOCAL TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE ADG user account info tracked in standby(LOCAL) or in Primary(GLOBAL) 3484866638 1
221 2545 adg_redirect_dml 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Enable DML Redirection from ADG 1230296824 1
222 2547 dml_locks 3 2216 2216 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE dml locks - one for each table modified in a transaction 1576699050 1
223 2552 replication_dependency_tracking 1 TRUE TRUE TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE tracking dependency for Replication parallel propagation 2475358177 1
224 2561 transactions 3 554 554 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE max. number of concurrent active transactions 812710636 1
225 2562 transactions_per_rollback_segment 3 5 5 5 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE number of active transactions per rollback segment 2728085332 1
226 2573 temp_undo_enabled 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE is temporary undo enabled 2961108249 1
227 2583 rollback_segments 2 TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE undo segment list 1884290623 1
228 2585 undo_management 2 AUTO AUTO AUTO TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE instance runs in SMU mode if TRUE, else in RBU mode 1401409411 1
229 2589 undo_tablespace 2 UNDOTBS1 UNDOTBS1 NONE FALSE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE TRUE use/switch undo tablespace 2692150816 1
230 2598 undo_retention 3 900 900 900 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE undo retention in seconds 3327480172 1
231 2606 fast_start_parallel_rollback 2 LOW LOW LOW TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE max number of parallel recovery slaves that may be used 1116456128 1
232 2608 resumable_timeout 3 0 0 0 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE set resumable_timeout 3544280463 1
233 2685 instance_number 3 0 0 0 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE TRUE instance number 3331028598 1
234 2771 heat_map 2 OFF OFF OFF TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE ILM Heatmap Tracking 557025825 1
235 2793 inmemory_size 6 0 0 0 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE size in bytes of in-memory area 2061531072 1
236 2794 inmemory_xmem_size 6 0 0 0 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE size in bytes of in-memory xmem area 2723349649 1
237 2803 inmemory_prefer_xmem_memcompress 2 NONE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Prefer to store tables with given memcompress levels in xmem 3157231085 1
238 2804 inmemory_prefer_xmem_priority 2 NONE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Prefer to store tables with given priority levels in xmem 3014816868 1
239 2827 allow_rowid_column_type 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Allow creation of rowid column 2475532286 1
240 2831 db_block_checking 2 FALSE FALSE FALSE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE header checking and data and index block checking 1476124072 1
241 2836 recyclebin 2 on on on TRUE TRUE DEFERRED TRUE TRUE FALSE FALSE FALSE FALSE recyclebin processing 4276141125 1
242 2893 db_index_compression_inheritance 2 NONE NONE NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE options for table or tablespace level compression inheritance 702102530 1
243 2998 db_securefile 2 PREFERRED PREFERRED PERMITTED TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE permit securefile storage during lob creation 3201873517 1
244 3035 inmemory_clause_default 2 NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Default in-memory clause for new tables 2908041815 1
245 3036 inmemory_force 2 DEFAULT DEFAULT DEFAULT TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Force tables to be in-memory or not 1497834589 1
246 3037 inmemory_query 2 ENABLE ENABLE ENABLE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Specifies whether in-memory queries are allowed 2615592267 1
247 3040 inmemory_expressions_usage 2 ENABLE ENABLE ENABLE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Controls which In-Memory Expressions are populated in-memory 619630228 1
248 3041 inmemory_virtual_columns 2 MANUAL MANUAL MANUAL TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Controls which user-defined virtual columns are stored in-memory 3211758405 1
249 3057 inmemory_max_populate_servers 3 0 0 65535 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE maximum inmemory populate servers 294396442 1
250 3059 inmemory_trickle_repopulate_servers_percent 3 1 1 1 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE inmemory trickle repopulate servers percent 1428503803 1
251 3126 inmemory_optimized_arithmetic 2 DISABLE DISABLE DISABLE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Controls whether or not DSBs are stored in-memory 1107040518 1
252 3169 inmemory_automatic_level 2 OFF OFF OFF TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Enable Automatic In-Memory management 3486375999 1
253 3272 create_stored_outlines 2 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE create stored outlines for DML statements 4265209363 1
254 3276 serial_reuse 2 disable disable disable TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE reuse the frame segments 319631122 1
255 3286 ldap_directory_access 2 NONE NONE NONE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE RDBMS's LDAP access option 366357953 1
256 3288 ldap_directory_sysauth 2 no no no TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE TRUE OID usage parameter 3590721065 1
257 3289 os_roles 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE retrieve roles from the operating system 3783461165 1
258 3290 rdbms_server_dn 2 NONE TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE RDBMS's Distinguished Name 3271017715 1
259 3293 remote_os_authent 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE allow non-secure remote clients to use auto-logon accounts 1794288875 1
260 3294 remote_os_roles 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE allow non-secure remote clients to use os roles 1402234932 1
261 3296 sec_case_sensitive_logon 1 TRUE TRUE TRUE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE TRUE FALSE case sensitive password enabled for logon 1474075370 1
262 3302 remote_login_passwordfile 2 EXCLUSIVE EXCLUSIVE exclusive FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE TRUE password file usage parameter 3127891494 1
263 3303 license_max_users 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE maximum number of named users that can be created in the database 849023886 1
264 3309 audit_sys_operations 1 FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE enable sys auditing 2991425711 1
265 3315 DBFIPS_140 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Enable use of crypographic libraries in FIPS mode, public 2966734791 1
266 3316 one_step_plugin_for_pdb_with_tde 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Facilitate one-step plugin for PDB with TDE encrypted data 911791935 1
267 3317 external_keystore_credential_location 2 NONE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE external keystore credential location 3445623151 1
268 3338 unified_audit_sga_queue_size 3 1048576 1048576 1048576 TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE Size of Unified audit SGA Queue 3223615522 1
269 3348 wallet_root 2 NONE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE wallet root instance initialization parameter 335793798 1
270 3349 tde_configuration 2 NONE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Per-PDB configuration for Transparent Data Encryption 2363583331 1
271 3351 db_domain 2 TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE TRUE directory part of global database name stored with CREATE DATABASE 2669961844 1
272 3352 global_names 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE enforce that database links have same name as remote database 2700405834 1
273 3353 distributed_lock_timeout 3 60 60 60 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE number of seconds a distributed transaction waits for a lock 842900040 1
274 3356 commit_point_strength 3 1 1 1 TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE Bias this node has toward not preparing in a two-phase commit 2235849826 1
275 3359 global_txn_processes 3 1 1 1 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE number of background global transaction processes to start 1426614060 1
276 3370 instance_name 2 ORCLCDB ORCLCDB TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE instance name supported by the instance 2256857119 1
277 3371 dispatchers 2 (PROTOCOL=TCP) (SERVICE=ORCLCDBXDB) (PROTOCOL=TCP) (SERVICE=ORCLCDBXDB) FALSE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE specifications of dispatchers 2044337135 1
278 3372 shared_servers 3 1 1 4294967294 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE TRUE number of shared servers to start up 3176325557 1
279 3373 max_shared_servers 3 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE max number of shared servers 2826600650 1
280 3374 max_dispatchers 3 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE max number of dispatchers 1521154394 1
281 3375 circuits 3 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE max number of circuits 4176376279 1
282 3376 shared_server_sessions 3 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE max number of shared server sessions 3395071916 1
283 3392 use_dedicated_broker 1 FALSE FALSE TRUE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Use dedicated connection broker 3036393081 1
284 3395 connection_brokers 2 ((TYPE=DEDICATED)(BROKERS=1)), ((TYPE=EMON)(BROKERS=1)) ((TYPE=DEDICATED)(BROKERS=1)), ((TYPE=EMON)(BROKERS=1)) TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE connection brokers specification connection_brokers default value 1187202324 1
285 3399 local_listener 2 FALSE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE local listener 1166810346 1
286 3400 forward_listener 2 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE forward listener 1488102093 1
287 3401 remote_listener 2 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE TRUE remote listener 3804628476 1
288 3402 listener_networks 2 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE listener registration networks 131162088 1
289 3407 cursor_space_for_time 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE use more memory in order to get faster execution 4277774490 1
290 3408 session_cached_cursors 3 50 50 50 TRUE TRUE DEFERRED TRUE TRUE FALSE FALSE FALSE FALSE Number of cursors to cache in a session. 766615249 1
291 3420 remote_dependencies_mode 2 TIMESTAMP TIMESTAMP timestamp TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE remote-procedure-call dependencies mode parameter 3590465749 1
292 3421 smtp_out_server 2 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE utl_smtp server and port configuration parameter 3248157648 1
293 3423 plsql_v2_compatibility 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE TRUE FALSE PL/SQL version 2.x compatibility flag 3179637611 1
294 3425 plsql_warnings 2 DISABLE:ALL DISABLE:ALL NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE PL/SQL compiler warnings settings PL/SQL warnings at init.ora 1215950514 1
295 3426 plsql_code_type 2 INTERPRETED INTERPRETED INTERPRETED TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE PL/SQL code-type 2972627138 1
296 3428 plsql_debug 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE TRUE FALSE PL/SQL debug 2795594338 1
297 3429 plsql_optimize_level 3 2 2 2 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE PL/SQL optimize level 818269884 1
298 3430 plsql_ccflags 2 NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE PL/SQL ccflags 2398569109 1
299 3432 plscope_settings 2 IDENTIFIERS:NONE IDENTIFIERS:NONE IDENTIFIERS:NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE plscope_settings controls the compile time collection, cross reference, and storage of PL/SQL source code identifier and SQL statement data 3026899342 1
300 3437 permit_92_wrap_format 1 TRUE TRUE TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE allow 9.2 or older wrap format in PL/SQL 3263158038 1
301 3439 java_jit_enabled 1 TRUE TRUE TRUE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Java VM JIT enabled 3091533831 1
302 3440 java_restrict 2 none none none TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Restrict Java VM Access 3776423980 1
303 3441 job_queue_processes 3 80 80 4000 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE maximum number of job queue slave processes job queue processes default tuning 1663833312 1
304 3443 scheduler_follow_pdbtz 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Make scheduler objects follow PDB TZ 3752450639 1
305 3447 parallel_min_percent 3 0 0 0 TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE minimum percent of threads required for parallel query 2166267089 1
306 3453 create_bitmap_area_size 3 8388608 8388608 8388608 TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE size of create bitmap buffer for bitmap index 2520699331 1
307 3454 bitmap_merge_area_size 3 1048576 1048576 1048576 TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE maximum memory allow for BITMAP MERGE 1575972631 1
308 3458 cursor_sharing 2 EXACT EXACT EXACT TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE cursor sharing mode 3355675594 1
309 3467 result_cache_mode 2 MANUAL MANUAL MANUAL TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE result cache operator usage mode 866827446 1
310 3497 parallel_min_servers 3 8 8 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE minimum parallel query servers per instance 759236997 1
311 3498 parallel_max_servers 3 80 80 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE maximum parallel query servers per instance 3629921023 1
312 3503 parallel_instance_group 2 NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE instance group to use for all parallel operations 1634530335 1
313 3512 parallel_execution_message_size 3 16384 16384 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE message buffer size for parallel execution 502422959 1
314 3524 hash_area_size 3 131072 131072 0 TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE size of in-memory hash work area 3018060907 1
315 3560 private_temp_table_prefix 2 ORA$PTT_ ORA$PTT_ ORA$PTT_ TRUE FALSE DEFERRED TRUE TRUE FALSE FALSE FALSE FALSE Private temporary table prefix 3584456969 1
316 3564 result_cache_max_size 6 8060928 7872K 1 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE maximum amount of memory to be used by the cache 4221019766 1
317 3565 result_cache_max_result 3 5 5 5 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE maximum result size as percent of cache size 4174962580 1
318 3566 result_cache_remote_expiration 3 0 0 0 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE maximum life time (min) for any result using a remote object 2062733047 1
319 3610 shadow_core_dump 2 partial partial partial TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Core Size for Shadow Processes 89911312 1
320 3611 background_core_dump 2 partial partial partial TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Core Size for Background Processes 1863643544 1
321 3612 background_dump_dest 2 /opt/oracle/product/19c/dbhome_1/rdbms/log /opt/oracle/product/19c/dbhome_1/rdbms/log $ORACLE_BASE/admin/@/bdump TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE TRUE FALSE Detached process dump directory 3665100166 1
322 3613 user_dump_dest 2 /opt/oracle/product/19c/dbhome_1/rdbms/log /opt/oracle/product/19c/dbhome_1/rdbms/log $ORACLE_BASE/admin/@/udump TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE TRUE FALSE User process dump directory 2332088509 1
323 3614 core_dump_dest 2 /opt/oracle/diag/rdbms/orclcdb/ORCLCDB/cdump /opt/oracle/diag/rdbms/orclcdb/ORCLCDB/cdump $ORACLE_BASE/admin/@/cdump TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Core dump directory 18033226 1
324 3624 audit_file_dest 2 /opt/oracle/admin/ORCLCDB/adump /opt/oracle/admin/ORCLCDB/adump $ORACLE_BASE/admin/@/adump FALSE FALSE DEFERRED FALSE TRUE FALSE FALSE FALSE FALSE Directory in which auditing files are to reside 2188534560 1
325 3625 audit_syslog_level 2 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Syslog facility and level 1189300432 1
326 3626 unified_audit_systemlog 2 TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE Syslog facility and level for Unified Audit 1480938780 1
327 3627 unified_audit_common_systemlog 2 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Syslog facility and level for only common unified audit records 1602228338 1
328 3637 resource_manage_goldengate 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE goldengate resource manager enabled 1718176322 1
329 3639 object_cache_optimal_size 3 10240000 10240000 10240000 TRUE TRUE DEFERRED TRUE TRUE FALSE FALSE FALSE FALSE optimal size of the user session's object cache in bytes 2564444157 1
330 3640 object_cache_max_size_percent 3 10 10 10 TRUE TRUE DEFERRED TRUE TRUE FALSE FALSE FALSE FALSE percentage of maximum size over optimal of the user session's object cache 3695573432 1
331 3642 lob_signature_enable 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE enable lob signature 2805186386 1
332 3645 session_max_open_files 3 10 10 10 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE maximum number of open files allowed per session 3334892241 1
333 3653 open_links 3 4 4 4 TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE max # open links per session 3842870833 1
334 3654 open_links_per_instance 3 4 4 4 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE max # open links per instance 1931961830 1
335 3659 commit_write 2 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE TRUE FALSE transaction commit log write behaviour 4194277916 1
336 3660 commit_wait 2 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE transaction commit log wait behaviour 3338003716 1
337 3661 commit_logging 2 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE transaction commit log write behaviour 1056517785 1
338 3663 optimizer_features_enable 2 19.1.0 19.1.0 19.1.0 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE optimizer plan compatibility parameter 2759770534 1
339 3664 fixed_date 2 NONE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE fixed SYSDATE value 48917745 1
340 3665 audit_trail 2 NONE NONE none FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE enable system auditing 4289193100 1
341 3666 sort_area_size 3 65536 65536 65536 TRUE TRUE DEFERRED TRUE TRUE FALSE FALSE FALSE FALSE size of in-memory sort work area 2099108347 1
342 3667 sort_area_retained_size 3 0 0 0 TRUE TRUE DEFERRED TRUE TRUE FALSE FALSE FALSE FALSE size of in-memory sort work area retained between fetch calls 3312265650 1
343 3682 cell_offload_processing 1 TRUE TRUE TRUE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE enable SQL processing offload to cells 3671696352 1
344 3685 cell_offload_decryption 1 TRUE TRUE TRUE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE enable SQL processing offload of encrypted data to cells 1760070659 1
345 3686 cell_offload_parameters 2 NONE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Additional cell offload parameters 2383178748 1
346 3687 cell_offload_compaction 2 ADAPTIVE ADAPTIVE ADAPTIVE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Cell packet compaction strategy 3388561534 1
347 3688 cell_offload_plan_display 2 AUTO AUTO AUTO TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Cell offload explain plan display 1313668841 1
348 3693 db_name 2 ORCLCDB ORCLCDB NONE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE TRUE database name specified in CREATE DATABASE 704871292 1
349 3694 db_unique_name 2 ORCLCDB ORCLCDB NONE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE TRUE Database Unique Name 2994684304 1
350 3695 open_cursors 3 300 300 50 FALSE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE TRUE max # cursors per session 4033294835 1
351 3696 ifile 4 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE include file in init.ora 636214420 1
352 3697 sql_trace 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE TRUE FALSE enable SQL trace 750089050 1
353 3698 os_authent_prefix 2 ops$ ops$ ops$ TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE prefix for auto-logon accounts 4201741605 1
354 3700 optimizer_mode 2 ALL_ROWS ALL_ROWS all_rows TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE optimizer mode 487657984 1
355 3705 sql92_security 1 TRUE TRUE TRUE TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE require select privilege for searched update/delete 2745708589 1
356 3708 blank_trimming 1 FALSE FALSE FALSE TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE blank trimming semantics parameter 1367606241 1
357 3715 star_transformation_enabled 2 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE TRUE enable the use of star transformation 1860374294 1
358 3759 parallel_degree_policy 2 MANUAL MANUAL MANUAL TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE policy used to compute the degree of parallelism (MANUAL/LIMITED/AUTO/ADAPTIVE) 1979359697 1
359 3769 parallel_adaptive_multi_user 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE TRUE FALSE enable adaptive setting of degree for multiple user streams 1602823864 1
360 3770 parallel_threads_per_cpu 3 1 1 1 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE number of parallel execution threads per CPU 1020981983 1
361 3796 optimizer_index_cost_adj 3 100 100 100 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE optimizer index cost adjustment 3753899412 1
362 3797 optimizer_index_caching 3 0 0 0 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE optimizer percent index caching 699019442 1
363 3809 query_rewrite_enabled 2 TRUE TRUE true TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE allow rewrite of queries using materialized views if enabled 3941771694 1
364 3810 query_rewrite_integrity 2 enforced enforced enforced TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE perform rewrite using materialized views with desired integrity 485484145 1
365 3868 pga_aggregate_target 6 536870912 512M 0 FALSE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE TRUE Target size for the aggregate PGA memory consumed by the instance 2184567208 1
366 3871 workarea_size_policy 2 AUTO AUTO AUTO TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE policy used to size SQL working areas (MANUAL/AUTO) 4004437305 1
367 3896 optimizer_dynamic_sampling 3 2 2 2 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE optimizer dynamic sampling 549852465 1
368 3926 statistics_level 2 TYPICAL TYPICAL TYPICAL TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE statistics level 3696230136 1
369 3946 cursor_bind_capture_destination 2 memory+disk memory+disk memory+disk TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Allowed destination for captured bind variables 766397948 1
370 3964 skip_unusable_indexes 1 TRUE TRUE TRUE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE skip unusable indexes if set to TRUE 3916780315 1
371 4002 optimizer_ignore_hints 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE enables the embedded hints to be ignored 3499641983 1
372 4055 optimizer_secure_view_merging 1 TRUE TRUE TRUE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE optimizer secure view merging and predicate pushdown/movearound 2261060089 1
373 4099 ddl_lock_timeout 3 0 0 0 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE timeout to restrict the time that ddls wait for dml lock 2606707053 1
374 4101 deferred_segment_creation 1 TRUE TRUE TRUE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE defer segment creation to first insert 2736380908 1
375 4109 optimizer_use_pending_statistics 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Control whether to use optimizer pending statistics 244859984 1
376 4113 optimizer_capture_sql_plan_baselines 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE automatic capture of SQL plan baselines for repeatable statements 147559078 1
377 4114 optimizer_use_sql_plan_baselines 1 TRUE TRUE TRUE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE use of SQL plan baselines for captured sql statements 2379667345 1
378 4141 parallel_min_time_threshold 2 AUTO AUTO AUTO TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE threshold above which a plan is a candidate for parallelization (in seconds) 1842587524 1
379 4143 parallel_degree_limit 2 CPU CPU CPU TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE limit placed on degree of parallelism 3004872640 1
380 4144 parallel_force_local 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE force single instance execution 1406010451 1
381 4151 optimizer_use_invisible_indexes 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Usage of invisible indexes (TRUE/FALSE) 1348858726 1
382 4175 dst_upgrade_insert_conv 1 TRUE TRUE TRUE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Enables/Disables internal conversions during DST upgrade 2379457992 1
383 4180 parallel_servers_target 3 80 80 0 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE instance target in terms of number of parallel servers 3701086916 1
384 4226 max_string_size 2 STANDARD STANDARD STANDARD TRUE FALSE IMMEDIATE TRUE FALSE FALSE FALSE FALSE FALSE controls maximum size of VARCHAR2, NVARCHAR2, and RAW types in SQL 832604811 1
385 4254 optimizer_adaptive_reporting_only 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE use reporting-only mode for adaptive optimizations 3779184761 1
386 4285 optimizer_adaptive_plans 1 TRUE TRUE TRUE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE controls all types of adaptive plans 2052942567 1
387 4345 optimizer_inmemory_aware 1 TRUE TRUE TRUE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE optimizer in-memory columnar awareness 4101747567 1
388 4389 cursor_invalidation 2 IMMEDIATE IMMEDIATE IMMEDIATE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE default for DDL cursor invalidation semantics 233636923 1
389 4394 approx_for_aggregation 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Replace exact aggregation with approximate aggregation 1811015687 1
390 4395 approx_for_count_distinct 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Replace count distinct with approx_count_distinct 30269921 1
391 4427 approx_for_percentile 2 none none none TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Replace percentile_* with approx_percentile 855482260 1
392 4441 optimizer_adaptive_statistics 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE controls all types of adaptive statistics 2479624794 1
393 4459 optimizer_ignore_parallel_hints 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE enables embedded parallel hints to be ignored 1469908346 1
394 4467 parallel_min_degree 2 1 1 1 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE controls the minimum DOP computed by Auto DOP 564144041 1
395 4517 sec_protocol_error_trace_action 2 TRACE TRACE TRACE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE TTC protocol error action 1358668447 1
396 4518 sec_protocol_error_further_action 2 (DROP,3) (DROP,3) (DROP,3) TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE TTC protocol error continue action 3049131826 1
397 4520 sec_max_failed_login_attempts 3 3 3 3 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE maximum number of failed login attempts on a connection 121837060 1
398 4521 sec_return_server_release_banner 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE whether the server retruns the complete version information 3794764196 1
399 4524 enable_ddl_logging 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE enable ddl logging 2442221836 1
400 4527 client_result_cache_size 6 0 0 0 TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE client result cache max size in bytes 3890547889 1
401 4528 client_result_cache_lag 6 3000 3000 3000 TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE client result cache maximum lag in milliseconds 1078110587 1
402 4556 outbound_dblink_protocols 2 ALL ALL ALL TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Outbound DBLINK Protocols allowed 3411337539 1
403 4557 allow_global_dblinks 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE LDAP lookup for DBLINKS 861057877 1
404 4564 client_statistics_level 2 TYPICAL TYPICAL TYPICAL TRUE FALSE DEFERRED FALSE TRUE FALSE FALSE FALSE FALSE Client Statistics Level 3743616278 1
405 4576 aq_tm_processes 3 1 1 1 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE number of AQ Time Managers to start 2948523121 1
406 4645 hs_autoregister 1 TRUE TRUE TRUE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE enable automatic server DD updates in HS agent self-registration 3959246632 1
407 4648 xml_db_events 2 enable enable enable TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE are XML DB events enabled 2688671432 1
408 4649 dg_broker_start 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE FALSE FALSE FALSE FALSE FALSE FALSE start Data Guard broker (DMON process) 2843461333 1
409 4650 dg_broker_config_file1 2 /opt/oracle/product/19c/dbhome_1/dbs/dr1ORCLCDB.dat /opt/oracle/product/19c/dbhome_1/dbs/dr1ORCLCDB.dat TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE data guard broker configuration file #1 2265440370 1
410 4651 dg_broker_config_file2 2 /opt/oracle/product/19c/dbhome_1/dbs/dr2ORCLCDB.dat /opt/oracle/product/19c/dbhome_1/dbs/dr2ORCLCDB.dat TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE data guard broker configuration file #2 2561076650 1
411 4663 olap_page_pool_size 6 0 0 0 TRUE TRUE DEFERRED TRUE TRUE FALSE FALSE FALSE FALSE size of the olap page pool in bytes 3715775675 1
412 4770 asm_diskstring 2 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE disk set locations for discovery 2084877408 1
413 4772 asm_preferred_read_failure_groups 2 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE TRUE FALSE preferred read failure groups 1510746396 1
414 4966 control_management_pack_access 2 DIAGNOSTIC+TUNING DIAGNOSTIC+TUNING DIAGNOSTIC+TUNING TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE declares which manageability packs are enabled 1240641681 1
415 4992 awr_pdb_autoflush_enabled 1 FALSE FALSE FALSE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Enable/Disable AWR automatic PDB flushing 944458775 1
416 4993 awr_pdb_max_parallel_slaves 3 10 10 10 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE maximum concurrent AWR PDB MMON slaves per instance 170462395 1
417 4996 awr_snapshot_time_offset 3 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Setting for AWR Snapshot Time Offset 3285753433 1
418 5005 sqltune_category 2 DEFAULT DEFAULT DEFAULT TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Category qualifier for applying hintsets 161860720 1
419 5043 autotask_max_active_pdbs 3 2 2 2 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Setting for Autotask Maximum Maintenance PDBs 193966638 1
420 5044 enable_automatic_maintenance_pdb 1 TRUE TRUE TRUE TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Enable/Disable Automated Maintenance for Non-Root PDB 229256255 1
421 5077 spatial_vector_acceleration 1 FALSE FALSE FALSE TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE enable spatial vector acceleration 1203174869 1
422 5081 diagnostic_dest 2 /opt/oracle /opt/oracle ?#/log FALSE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE diagnostic base directory 3957361937 1
423 5115 tracefile_identifier 2 TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE trace file custom identifier 978134115 1
424 5117 max_dump_file_size 2 unlimited unlimited unlimited TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Maximum size (in bytes) of dump file 1271961010 1
425 5131 trace_enabled 1 TRUE TRUE TRUE TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE enable in memory tracing 1583875908 1
426 5147 cell_offloadgroup_name 2 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Set the offload group name 2577808808 1
427 5158 enable_pluggable_database 1 TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Enable Pluggable Database 515850361 1
428 5162 pdb_os_credential 2 TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE pluggable database OS credential to bind 1858916307 1
429 5163 pdb_file_name_convert 2 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE PDB file name convert patterns and strings for create cdb/pdb 2311016676 1
430 5166 noncdb_compatible 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Non-CDB Compatible 2594626030 1
431 5169 common_user_prefix 2 C## C## NONE TRUE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE Enforce restriction on a prefix of a Common User/Role/Profile name 1614452063 1
432 5177 target_pdbs 3 3 3 1 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE Parameter is a hint to adjust certain attributes of the CDB 256241361 1
433 5178 max_pdbs 3 254 254 4098 TRUE FALSE IMMEDIATE TRUE FALSE FALSE FALSE FALSE FALSE max number of pdbs allowed in CDB or Application ROOT 1010400604 1
434 5185 cdb_cluster 1 FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE if TRUE startup in CDB Cluster mode 2200453584 1
435 5186 cdb_cluster_name 2 NONE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE CDB Cluster name 1639532350 1
436 5189 standby_pdb_source_file_directory 2 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE standby source file directory location 990771014 1
437 5190 standby_pdb_source_file_dblink 2 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE database link to standby source files 3758932138 1
438 5195 remote_recovery_file_dest 2 NONE TRUE FALSE IMMEDIATE TRUE FALSE FALSE FALSE FALSE FALSE default remote database recovery file location for refresh/relocate 3589523542 1
439 5196 disable_pdb_feature 6 0 0 0 TRUE FALSE IMMEDIATE FALSE TRUE FALSE FALSE FALSE FALSE Disable features 2963331633 1
440 5228 containers_parallel_degree 3 65535 65535 65535 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Parallel degree for a CONTAINERS() query 54876967 1
441 5245 default_sharing 2 metadata metadata metadata TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE Default sharing clause 3481738328 1
442 5274 pdb_lockdown 2 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE pluggable database lockdown profile 2811081377 1
443 5282 pdb_template 2 TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE PDB template 477875923 1
444 5296 shrd_dupl_table_refresh_rate 3 60 60 60 TRUE FALSE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE duplicated table refresh rate (in seconds) 1277469149 1
445 5328 multishard_query_data_consistency 2 strong strong strong TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE consistency setting for multishard queries 2534037010 1
446 5329 multishard_query_partial_results 2 not allowed not allowed not allowed TRUE TRUE IMMEDIATE TRUE TRUE FALSE FALSE FALSE FALSE enable partial results for multishard queries 161456481 1

View File

@@ -0,0 +1,22 @@
set colsep ,
set headsep off
set pagesize 0
set trimspool on
set linesize 4100
set numwidth 19
set heading on
set feed off
set echo off
set tab off
set trim on
set trims on
-- This option is only available in versions 12.2 and up
set markup csv on
spool knob_info.csv
select * from v$parameter order by name;
spool off

View File

@@ -0,0 +1,15 @@
SET echo off
SET linesize 32767
SET LONG 90000
SET LONGCHUNKSIZE 90000;
SET wrap off;
SET heading off
SET colsep '|'
SET pagesize 0;
SET feed off;
SET termout off;
SET trimspool ON;
SELECT * FROM v$parameter order by name;
spool t2.csv
/
spool off

View File

@@ -39,6 +39,14 @@
"version":"5.6"
}
},
{
"model":"website.DBMSCatalog",
"pk":121,
"fields":{
"type":4,
"version":"12.1.0.2.0"
}
},
{
"model":"website.DBMSCatalog",
"pk":12,
@@ -55,5 +63,4 @@
"version":"19.0.0.0.0"
}
}
]