Soy nuevo en SQL Triggers.
El disparador a continuación me da un error al decir que
Error: PL/SQL: ORA-00942: tabla o vista no existe
Error: PL/SQL: instrucción SQL ignorada
create or replace trigger HIST
after update of DATE ON EPISODE
for each row
begin
INSERT INTO HIST SELECT * FROM INSERTED;
end HIST;
Cualquier ayuda sería apreciada.