The number of initialization parameters for the Oracle database. Mainly from two Oracle internal data dictionary tables: X$KSPPCV and X$ksppi usually we query the V$parameter view or use the show parameter command from both system tables. However, implicit parameters cannot be queried in either of these ways.
X$KSPPCV is used to record the value of the current setting and whether the default value is used, the X $KSPPI is an underlying table that records simple information such as the name of the parameter, the description of the parameter, and so on . It is important to note that the inst_id field is used in the RAC environment to determine the instance to which the parameter belongs.
can use such as the following script. To query the implied parameters of the current instance:
Select x.ksppinm name, y.ksppstvl value, y.ksppstdf IsDefault, decode (Bitand ( y.ksppstvf,7), 1, ' MODIFIED ', 4, ' System_mod ', ' false ') Ismod, decode (Bitand (y.ksppstvf,2), 2, ' TRUE ', ' false ' ) Isadjfrom sys.x$ksppi x, sys.x$ksppcv ywhere x.inst_id = Userenv (' Instance ') and Y.inst_ id = userenv (' Instance ') and x.indx = Y.indx and x.ksppinm like '%_&par% ' ORDER by translate ( X.KSPPINM, ' _ ', ')/
Get Oracle Implicit parameter information