look here and see if you can implement this trick, which basically wraps the trigger in an if statement, a controlled variable that you can turn on and off
if (@DISABLE_TRIGER <> 1 ) then
end if;
and if you want to disable triggers for import only:
SET @DISABLE_TRIGER = 1;
#do imports
SET @DISABLE_TRIGER = 0;