Your browser does not support JavaScript. This help page requires JavaScript to render correctly. About OLD and NEW Pseudorecords
Skip Headers
Previous
Previous
 
Next
Next

About OLD and NEW Pseudorecords

When a row-level trigger fires, the PL/SQL run-time system creates and populates the two pseudorecords OLD and NEW. They are called pseudorecords because they have some, but not all, of the properties of records.

For the row that the trigger is processing:

To reference a pseudorecord, put a colon before its name—:OLD or :NEW—as in Example: Creating an INSTEAD OF Trigger.

Related Topics

Oracle Database PL/SQL Language Reference

Creating Triggers