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 theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Unique identifier for the transformation |
|
|
|
Owning user of the transformation |
|
|
|
Transformation name |
|
|
Source type name |
|
|
|
Target type name |
|
|
|
|
Target type attribute number |
|
|
Transformation function for the attribute |
See Also:
-
“DBA_ATTRIBUTE_TRANSFORMATIONS”
-
“USER_ATTRIBUTE_TRANSFORMATIONS”