alter table 表名 disable all triggers–禁用指定表相关的触发器
alter table 表名 enable all triggers–启用指定表相关的触发器
select T.STATUS,T.* from user_triggers t where t.TABLE_NAME=表名–查触发器生效状态
–禁用/启用主/外键约束
alter table 表名 disable constraint 主/外键名称;
alter table 表名 enable constraint 主/外键名称;