Oracle 视图 DBA_ILMPARAMETERS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_ILMPARAMETERS可以将实例中ILM (Information Lifecycle Management)参数,包括Archive Redirection属性等信息展示出来。用户可以通过查询该视图,方便查看和设置ILM参数。
要使用DBA_ILMPARAMETERS视图,需要满足如下条件:
1. 用户必须具有SELECT、INSERT、UPDATE或DELETE来执行INSERT,UPDATE或DELETE操作;
2. 如果用户需要在视图上运行UPDATE或DELETE语句,则需要拥有EXECUTE权限 ON DBMS_STATS;
3. 如果用户想使用DML命令,必须拥有DBA、RESOURCE或SELECT_AGENT权限;
4. 用户需要拥有OBJECT_TYPE_ADMIN权限;
5. 用户必须拥有QUERY REWRITE权限。
要查询DBA_ILMPARAMETERS视图,可以使用以下代码:
SELECT * FROM DBA_ILMPARAMETERS;
这将会返回当前实例中的所有ILM参数,包括Archive Redirection属性等等。
官方英文解释
DBA_ILMPARAMETERS
can be queried to provide information on the Automatic Data Optimization parameters in the database and their values.
Note:
Automatic Data Optimization is supported in Oracle Database 12c Release 2 multitenant environments.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Name of the Automatic Data Optimization environment parameter. The value is one of the constants defined in the |
|
|
|
Value of the parameter |
See Also:
-
Oracle Database PL/SQL
Packages and Types Reference for more information about the API interface for implementing Automatic Data Optimization strategies -
Oracle Database PL/SQL
Packages and Types Reference for more information about theDBMS_ILM_ADMIN
package