How to check Hidden parameters in Oracle Database

Posted on: 2023-02-01 17:03:43


Suppose we need to find hidden parameter(_kks_use_mutex_pin) value in Database.

Execute Below Query:

 

SQL> select x.ksppinm name,y.ksppstvl value from
      sys.x$ksppi x,sys.x$ksppcv y where
      x.inst_id=sys_context('userenv', 'instance') and
      y.inst_id=sys_context('userenv', 'instance') and
     x.indx=y.indx AND
     x.ksppinm = '_kks_use_mutex_pin';
 

If it's having value false and you want to change it to true. 

Do the below:


SQL> alter system set "_kks_use_mutex_pin"=false scope=spfile;
SQL> shutdown immediate
SQL> startup



xedok I trust you appreciate perusing this blog entry. Assuming you need my group to simply do your promoting for you. click here



Leave a reply