See Oracle-defined implicit Parameters

Source: Internet
Author: User

Use show parameter xx in sqlplus to view the Oracle-defined parameters, which are obtained by querying v $ parameter. In addition, some implicit parameters in Oracle cannot be directly queried through the show parameter method.

Let's check the execution plan of select * from v $ parameter.

SQL> set autotrace traceonly;

SQL> select * from v $ parameter;

Row 288 has been selected.

Execution Plan

The actual parameter is derived from two tables x $ ksppcv x $ ksppi.

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') isadj

From sys. x $ ksppi x, sys. x $ ksppcv y where x. inst_id = userenv ('instance') and

Y. inst_id = userenv ('instance') and x. indx = y. indx order

Translate (x. ksppinm ,'_','')

When modifying implicit parameters,

Alter system set "parameter_name" = value scope = both sid = '*';

Some of them can be modified in memory, while others can only be modified through spfile. Just try it and you will understand it.

Note that double quotation marks must be added. In addition, there must be no space in the quotation marks and only the parameter name can be included.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.