CREATE  OR  REPLACE  TRIGGER  "INMGR"."EMP_TRIG"  
BEFORE  
INSERT  ON  "EMP" 
for each row 
begin  
:new.id:=t_seq.nextval;  
end; 
/