代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/161040/5563894
txt row_triger.txt
desc user_triggers;
select trigger_body from user_triggers;
--列级触发器
DML Trigger Example with Restriction
This example creates a BEFORE row trigger named SALARY_CHECK in the schema SCOTT. The P
www.eeworm.com/read/160745/5565963
tri_-
IF EXISTS(SELECT NAME FROM SYSOBJECTS WHERE NAME='TRI_实际盘点' AND TYPE='TR')
DROP TRIGGER TRI_实际盘点
GO
CREATE TRIGGER [TRI_实际盘点] ON dbo.实地盘点数据表
FOR INSERT,UPDATE
AS
Declare @KEY_ID INT,@物料编码 v
www.eeworm.com/read/160745/5565964
tri_
if exists (select name from sysobjects where name='tri_调整实际成本' and type='tr')
drop trigger tri_调整实际成本
go
create trigger [tri_调整实际成本] on 明细库存表
for insert,update
as
declare @物料编码 VARCHAR(30),@结存数量
www.eeworm.com/read/392361/8348622
m exm084_4.m
%exm084_4.m
[t,x,y]=sim('exm084_4s',10);
clf,hold on
plot(t,y(:,1),'b')
stairs(t,y(:,2),'r')
stairs(t,y(:,3),'c:'),hold off
axis([0 10 -1.1 1.1]),box on
legend('sinewave','output','trigger',4)
www.eeworm.com/read/173349/9661588
test laststmtchanges.test
# The author disclaims copyright to this source code. In place of
# a legal notice, here is a blessing:
#
# May you do good and not evil.
# May you find forgiveness for yourself and forgive oth
www.eeworm.com/read/368108/9711696
m exm084_4.m
%exm084_4.m
[t,x,y]=sim('exm084_4s',10);
clf,hold on
plot(t,y(:,1),'b')
stairs(t,y(:,2),'r')
stairs(t,y(:,3),'c:'),hold off
axis([0 10 -1.1 1.1]),box on
legend('sinewave','output','trigger',4)
www.eeworm.com/read/268098/11154466
ucf osc.ucf
#D2SB
net "rst" loc = "p187";# btn1 on D2SB
net "mclk" loc = "p182";
#AIO1
net "convst" loc = "p152";
net "sclk" loc = "p149";
net "din" loc = "p1
www.eeworm.com/read/247504/12655431
sql tri_调整实际成本.sql
if exists (select name from sysobjects where name='tri_调整实际成本' and type='tr')
drop trigger tri_调整实际成本
go
create trigger [tri_调整实际成本] on 明细库存表
for insert,update
as
declare @物料编码 VARCHAR(30),@结存数量
www.eeworm.com/read/247504/12655445
sql tri_实际盘点.sql
IF EXISTS(SELECT NAME FROM SYSOBJECTS WHERE NAME='TRI_实际盘点' AND TYPE='TR')
DROP TRIGGER TRI_实际盘点
GO
CREATE TRIGGER [TRI_实际盘点] ON dbo.实地盘点数据表
FOR INSERT,UPDATE
AS
Declare @KEY_ID INT,@物料编码 v