ORA-04079

Error: ORA-04079: invalid trigger specification

Causa: The create TRIGGER statement is invalid.

Acción: Check the statement for correct syntax.

COMENTARIOS:

por floppy | 19/02/2011 17:07:12

RE: ORA-04079

create or replace trigger tri_mov
before insert or update on movimientos
for each row is
declare c number;
begin
select credito into c
from cuentas
where cuenta#=:new.cuenta#;
if :new.saldo

por floppy | 19/02/2011 17:07:39

RE: ORA-04079

me pasa =