两个数据库A和 B
各有一个触发器。
我想在A中将B中的触发器设为disable
怎么弄
这是a的,我怎么加啊,请高手指点!create or replace trigger updateasdfasdf
 before update on logon 
  for each row
 begin  if updating then  
   update N_PERSONALCUSTOMER@ESALE 
     set password=lower(:new.password )   
  where email=:new.email;
  end if;
end update_password;