USER_TRIGGERS
- USER_TRIGGERS:视图提供当前用户的数据库表上的触发器信息
列名 | 类型 | 描述 |
schema_name | text | 触发器所在架构的名称 |
trigger_name | text | 触发器的名称 |
trigger_type | text | 触发器的类型 |
triggering_event | text | 触发触发器的事件 |
table_owner | text | 定义触发器的表的所有者的用户名 |
base_object_type | text | 定义触发器的基对象:表、视图、架构或数据库 |
table_name | text | 定义触发器的表的名称 |
referencing_names | text | 用于从触发器中引用新旧列值的名称 |
status | text | 状态指示触发器是启用(有效)还是禁用 |
description | text | 触发器描述 |
trigger_body | text | 触发器主体 |
action_statement | text | 触发器触发时执行的SQL命令 |