ORA-04072: invalid trigger type
Cause: An invalid trigger type was given.
Action: Specify either INSERT, UPDATE or DELETE.
。
ORA-04072: invalid trigger type 当在 Oracle 数据库中创建触发器时,由于输入或拼写错误,可能会收到这个错误消息。
ORA-04072: invalid trigger type
Cause: An attempt was made to create a trigger with an invalid type.
Action: Check the syntax of the CREATE TRIGGER statement for the proper options.
有时用户会尝试使用其他触发器类型,比如DDL triggers,而不是使用常规的表触发器类型,这时就会收到ORA-04072的错误消息。
1. 需要验证CREATE TRIGGER的语法是否正确;
2. 检查触发器类型是否有效,例如DDL triggers、BEFORE triggers、AFTER triggers等;
3. 重新设置对应的权限;
4. 重新执行语句以解决ORA-04072问题。