create or replace Trigger mytrigger1 
after insert on employee
begin 
 dbms_output.put_line('Record inserted using after');
end;
/