Oracle 视图 ALL_PLSQL_OBJECT_SETTINGS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图ALL_PLSQL_OBJECT_SETTINGS主要用来获取系统内PL/SQL对象的可选参数设置,这些PL/SQL对象包括函数、存储过程、包和包体。
它的主要用途是帮助我们了解PL/SQL对象的已自定义参数,而不是使用系统默认设置。
使用这个视图需要拥有 DBA权限,可以通过下面的语句来查看带有参数设置的对象:
SELECT name, object_type, parameter_name, parameter_value
FROM all_plsql_object_settings
WHERE name = ‘OBJECT_NAME’;
官方英文解释
ALL_PLSQL_OBJECT_SETTINGS
displays information about the compiler settings for the stored objects accessible to the current user.
Related Views
-
DBA_PLSQL_OBJECT_SETTINGS
displays information about the compiler settings for all stored objects in the database. -
USER_PLSQL_OBJECT_SETTINGS
displays information about the compiler settings for the stored objects owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the object |
|
|
|
Name of the object |
|
|
Type of the object:
|
|
|
|
Optimization level that was used to compile the object |
|
|
|
Compilation mode for the object |
|
|
|
Indicates whether the object was compiled with debug information or not |
|
|
|
Compiler warning settings that were used to compile the object |
|
|
|
NLS length semantics that were used to compile the object |
|
|
|
Conditional compilation flag settings that were used to compile the object |
|
|
|
Settings for using PL/Scope |
|
|
|
The ID of the container where the data originates. Possible values include:
|
See Also:
-
“DBA_PLSQL_OBJECT_SETTINGS”
-
“USER_PLSQL_OBJECT_SETTINGS”