码迷,mamicode.com
首页 > 其他好文 > 详细

V$PARAMETER与V$SPPARAMETER的区别

时间:2018-05-25 00:14:55      阅读:414      评论:0      收藏:0      [点我收藏+]

标签:contents   分享   effect   each   cursor   ppa   create   rac   视图   

1.官方文档定义
V$PARAMETER
V$PARAMETER displays information about the initialization parameters that are currently in effect for the session.
A new session inherits parameter values from the instance-wide values displayed by the V$SYSTEM_PARAMETER view.

V$SPPARAMETER
V$SPPARAMETER displays information about the contents of the server parameter file.
If a server parameter file was not used to start the instance, then each row of the view will contain FALSE in the ISSPECIFIED column.

2.oracle用spfile启动

技术分享图片

技术分享图片 

可以看到v$parameter显示的不仅仅是参数文件中的所涉及到参数值,而且一些系统默认值也显示出来了。而v$spparameter仅仅显示参数文件中所涉及到的参数值,其余的全为空值。

3.动态改变一个参数看这两个视图有什么影响
SQL> alter system set open_cursors=500;

 技术分享图片

技术分享图片

两个视图都同时显示更新之后的值

4.用pfile启动数据库
SQL> create pfile=‘/home/oracle/pfile524‘ from spfile;
SQL> startup force pfile=‘/home/oracle/pfile524‘;

 技术分享图片

技术分享图片

可以看到v$parameter仍然有值,可v$spparameter却为空值了

5.总结
v$parameter看到的现在数据库所使用的参数值
v$spparameter所显示的是参数文件中所规定的参数值,如果用pfile启动的数据库,该视图全为空值。

欢迎大家补充和建议!

V$PARAMETER与V$SPPARAMETER的区别

标签:contents   分享   effect   each   cursor   ppa   create   rac   视图   

原文地址:https://www.cnblogs.com/ddzj01/p/9085611.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!