create or replace trigger securityemp
before insert
on emp
declare
begin
if to_char(sysdate,'day') in ('星期六','星期日') or
to_number(to_char(sysdate.'hh24')) not between 9 and 18 then
--禁止insert员工
raise_application_error(-20001,'禁止在非工作时间插入员工');
end if;
end;
/
before insert
on emp
declare
begin
if to_char(sysdate,'day') in ('星期六','星期日') or
to_number(to_char(sysdate.'hh24')) not between 9 and 18 then
--禁止insert员工
raise_application_error(-20001,'禁止在非工作时间插入员工');
end if;
end;
/
2018-06-19
当oracle数据库在原表中 插入时在触发器中要
declare;
PRAGMA AUTONOMOUS_TRANSACTION;
commit
declare;
PRAGMA AUTONOMOUS_TRANSACTION;
commit
2018-03-12
最赞回答 / qq_小灰灰_30
你可以对触发器做一下操作--禁用某个表上的所有触发器ALTER TABLE 表 DISABLE TRIGGER all--启用某个表上的所有触发器ALTER TABLE 表 enable TRIGGER all--禁用所有表上的所有触发器exec sp_msforeachtable 'ALTER TABLE DISABLE TRIGGER all'
2018-03-03