Why is the GETDATE() an invalid identifier says Oracle Sql Developer tool when I debug this code:
CREATE OR REPLACE TRIGGER SPName AFTER UPDATE ON TableName
Use ORACLE equivalent of getdate() which is sysdate . Read about here. Getdate() belongs to SQL Server , will not work on Oracle.
getdate()
sysdate
Other option is current_date
current_date