本站中文解释
Oracle 视图 DBA_APPLY_KEY_COLUMNS 是SYS定义的系统视图,用于查看同步订阅中,当前订阅的数据表的主键信息、主键列名及排序顺序。
使用此视图的SQL语句格式如下:
SELECT COLUMN_NAME, COLUMN_ORDINAL_POSITION, COLUMN_SORT_ORDER
FROM DBA_APPLY_KEY_COLUMNS
WHERE SUBSCRIBER_NAME = ‘subscriber_name’
AND TABLE_NAME = ‘table_name’;
其中,subscriber_name表示订阅者的名称,table_name表示数据表的名称。
官方英文解释
DBA_APPLY_KEY_COLUMNS
displays information about the substitute key columns for all tables in the database. Its columns are the same as those in ALL_APPLY_KEY_COLUMNS
.
See Also:
“ALL_APPLY_KEY_COLUMNS”