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

本站中文解释

Oracle视图ALL_ATTRIBUTE_TRANSFORMATIONS内容呈现了对全局注册的属性转换以及它们的数据类型的元数据的描述。这类转换可以分解为一些基本的parent-child节点,这些节点描述了转换的元数据和配置参数。ALL_ATTRIBUTE_TRANSFORMATIONS可以用来查询这些节点,找出需要执行特定转换时所需要的配置参数。

要使用ALL_ATTRIBUTE_TRANSFORMATIONS视图,可以运行SELECT语句,这个SELECT语句用来查询 this view 中的特定属性转换的参数信息,其语法如下:

SELECT ATTRIB_TRANSFORM_NAME, PARAM_NAME, PARAM_VALUE
FROM ALL_ATTRIBUTE_TRANSFORMATIONS
WHERE ATTRIB_TRANSFORM_NAME = ”;

其中,是指要查询的属性转换的名称。

官方英文解释

ALL_ATTRIBUTE_TRANSFORMATIONS describes the transformation functions for the transformations accessible to the current user.

Related Views

  • DBA_ATTRIBUTE_TRANSFORMATIONS describes the transformation functions for all transformations in the database.

  • USER_ATTRIBUTE_TRANSFORMATIONS describes the transformation functions for the transformations owned by the current user. This view does not display the OWNER column.

Column Datatype NULL Description

TRANSFORMATION_ID

NUMBER

NOT NULL

Unique identifier for the transformation

OWNER

VARCHAR2(128)

NOT NULL

Owning user of the transformation

NAME

VARCHAR2(128)

NOT NULL

Transformation name

FROM_TYPE

VARCHAR2(257)

Source type name

TO_TYPE

VARCHAR2(385)

Target type name

ATTRIBUTE

NUMBER

NOT NULL

Target type attribute number

ATTRIBUTE_TRANSFORMATION

VARCHAR2(4000)

Transformation function for the attribute

See Also:

  • “DBA_ATTRIBUTE_TRANSFORMATIONS”

  • “USER_ATTRIBUTE_TRANSFORMATIONS”


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