Oracle 视图 DBA_STORED_SETTINGS 官方解释,作用,如何使用详细说明
本站中文解释
.
Oracle视图DBA_STORED_SETTINGS是Oracle系统自带的一张视图,用于查询当前session的环境变量,即存储在oracle中的各种session级及设置项。该视图可以统计当前数据库用户session有哪些环境变量,这些环境变量值是什么,还有数据库是否开启了特定的参数配置。
使用视图DBA_STORED_SETTINGS要提前运行一条查询,去确定session参数的设置值。然后可以根据得到的信息对数据库实行必要的优化。
官方英文解释
DBA_STORED_SETTINGS
lists information about the persistent parameter settings for stored PL/SQL units for which the current user has execute privileges.
It also returns parameter information for all objects in the database and is accessible only to users with the SELECT_CATALOG_ROLE
privilege. Its columns are the same as those in ALL_STORED_SETTINGS
.
See Also:
“ALL_STORED_SETTINGS”