Oracle PL/SQL:将整行从触发器转发到过程

2021-12-24 00:00:00 oracle stored-procedures triggers plsql

有一个 Oracle (10i) PL/SQL 行级触发器,它负责三个独立的任务.由于触发器在这种情况下相对混乱,我想将这三个任务导出到三个存储过程中.我正在考虑使用 my_table%ROWTYPE 参数或过程的集合类型,但我主要关心的是如何填充这些参数.

In have an Oracle (10i) PL/SQL Row-Level trigger which is responsible for three independent tasks. As the trigger is relatively cluttered that way, I want to export these three tasks into three stored procedures. I was thinking of using a my_table%ROWTYPE parameter or maybe a collection type for the procedures, but my main concern is how to fill these parameters.

有没有办法轻松地将触发器的整个 :NEW 行放入单个变量中?到目前为止,我能找到的唯一方法是将每个字段单独分配给不太令人满意的变量,查看代码维护等.

Is there a way to put the whole :NEW row of a trigger into a single variable easily? So far the only way I could find out was assigning each field separately to the variable which is not quite satisfying, looking at code maintenance etc.

类似的东西

SELECT :NEW.* INTO <variable> FROM dual;

将是首选.(实际上我还没有尝试过,但我想它不会起作用)

would be preferred. (I haven't tried that actually but I suppose it wouldn't work)

推荐答案

这不可能.

也许 我对另一个问题的回答 可以提供帮助.

Maybe my answer to another question can help.

相关文章