代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/161040/5563906
txt trigger_emp_dept.txt
CREATE OR REPLACE TRIGGER cascade_updates
AFTER UPDATE OF deptno on emp
FOR EACH ROW
BEGIN
DBMS_OUTPUT.PUT_LINE('TRIGGER FILRE');
UPDATE dept
SET dept.deptno = :new.deptno
WH
www.eeworm.com/read/293887/8265802
vi send software trigger.vi
www.eeworm.com/read/172642/9697978
m trigger_window_config.m
function retval = Trigger_Window_Config(slot, mode, windowSize)
% retval = Trigger_Window_Config(slot, mode, windowSize)
% No documentation is available yet.
retval = daq2(140, slot, mode, window
www.eeworm.com/read/248435/12558793
vi configure sequence trigger.vi
www.eeworm.com/read/248435/12558812
vi configure trigger source.vi
www.eeworm.com/read/248435/12558817
vi configure trigger holdoff.vi
www.eeworm.com/read/201026/15418183
txt 16_pl_trigger.txt
--trigger不能含有事物处理的语句,除非使用间接的自动提交。
例题一
/* 更新D表的DEPTNO时自动更新E表的DEPTNO */
connect scott/tiger
drop table d;
drop table e;
create table d as select * from dept;
create table e as select * from emp
www.eeworm.com/read/410726/11270803
txt triggers.txt
--==================================================
-- TRIGGER N
www.eeworm.com/read/264200/11325907
cmd hally.cmd
; The CMD file.
;
; Two parts: 1. Command definition and 2. State entry
; (state entry is after the commands def section)
;
; 1. Command definition
; ---------------------
; Note: The commands
www.eeworm.com/read/130188/5963166
java loggingtriggerhistoryplugin.java
/*
* Copyright James House (c) 2001-2004
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the followi