Oracle 视图 ALL_MINING_MODEL_VIEWS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle(早期称为Oracle视图)可以在ALL_MINING_MODEL_VIEWS 视图中查询数据挖掘模型的信息,其中包括模型的名称、版本和作者等信息。这些信息可以帮助用户快速定位特定模型,而无需编写完整的SQL查询,以更好的实现数据挖掘的效率。
使用该视图非常简单,只需要使用select语句,然后指定要查询的字段,不需要关联任何表或视图及字段,即可给出相应的结果。例如:
SELECT model_name, model_version, author FROM ALL_MINING_MODEL_VIEWS;
这样就可以查询出所有的模型的名称、版本及作者的信息。
官方英文解释
ALL_MINING_MODEL_VIEWS
provides a description of all the model views accessible to the user.
Related Views
-
DBA_MINING_MODEL_VIEWS
provides a description of all the model views in the database. -
USER_MINING_MODEL_VIEWS
provides a description of the user’s own model views. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the model view |
|
|
|
Name of the model to which model views belongs |
|
|
|
Name of the model view |
|
|
– |
Type of the model view |
See Also:
“ALL_MINING_MODEL_VIEWS” in Oracle Machine Learning
for SQL User’s Guide