Oracle 视图 DBA_MINING_MODEL_TABLES 官方解释,作用,如何使用详细说明

本站中文解释

Oracle中的视图DBA_MINING_MODEL_TABLES是一个数据字典视图,用于存储存在于库中的数据挖掘模型中的表元数据。它存储了每个模型中所包含的表信息,以及每个表在模型分析过程中扮演的角色。

使用方法

你可以使用SELECT *FROM DBA_MINING_MODEL_TABLES视图来查询哪些模型存在于库中,以及这些模型中包含哪些表,这些表扮演什么角色,等等。

有了DBA_MINING_MODEL_TABLES视图,你可以更加清晰地了解数据库中的模型情况,并确定哪些表在参与模型分析的过程中扮演着重要角色。

官方英文解释

DBA_MINING_MODEL_TABLES describes the tables that contain metadata about the machine learning models in the database.

Machine learning models are schema objects created by Oracle Machine Learning for SQL (OML4SQL).

Model tables reside in the schema of the machine learning model owner. The metadata stored in the tables is controlled by OML4SQL APIs. The tables are read-only. They should not be modified by users.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner of the machine learning model

MODEL_NAME

VARCHAR2(128)

NOT NULL

Name of the machine learning model

TABLE_NAME

VARCHAR2(128)

NOT NULL

Name of the table

TABLE_TYPE

VARCHAR2(21)

The type of metadata stored in the table


数据运维技术 » Oracle 视图 DBA_MINING_MODEL_TABLES 官方解释,作用,如何使用详细说明