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

本站中文解释

Oracle视图DBA_APPLY_TABLE_COLUMNS用于查看特定表中的所有列(包括允许用于应用注入的列),有助于确定表中的列根据其安全需求是否可用于SQL中的应用注入。

Usage:
SELECT owner, table_name,column_name, allow_apply_injection
FROM DBA_APPLY_TABLE_COLUMNS
WHERE owner = AND table_name =

官方英文解释

DBA_APPLY_TABLE_COLUMNS displays, for all tables in the database, information about the nonkey table columns for which apply process conflict detection has been stopped for update and delete operations. Its columns are the same as those in ALL_APPLY_TABLE_COLUMNS.

See Also:

“ALL_APPLY_TABLE_COLUMNS”



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