代码搜索:Update
找到约 10,000 项符合「Update」的源代码
代码结果 10,000
www.eeworm.com/read/161438/5553999
mak three_options.mak
# Nmake macros for building Windows 32-Bit apps
all: Three_~1.exe
# Update the resource if necessary
generic.res:generic.rc generic.h
rc -r -fo generic.res generic.rc
# Update the obj
www.eeworm.com/read/161438/5554019
mak getthreadcontext.mak
# Nmake macros for building Windows 32-Bit apps
all: GetThr~1.exe
# Update the resource if necessary
generic.res:generic.rc generic.h
rc -r -fo generic.res generic.rc
# Update the obj
www.eeworm.com/read/161438/5554053
mak enum_allfonts.mak
# Nmake macros for building Windows 32-Bit apps
all: Enum_A~1.exe
# Update the resource if necessary
Enum_A~1.res: Enum_A~1.rc Enum_A~1.h
rc -r -fo Enum_A~1.res Enum_A~1.rc
# Update t
www.eeworm.com/read/161438/5554058
mak create_set.mak
# Nmake macros for building Windows 32-Bit apps
all: Create~1.exe
# Update the resource if necessary
generic.res:generic.rc generic.h
rc -r -fo generic.res generic.rc
# Update the obj
www.eeworm.com/read/161121/5560356
h sa-1111.h
/*
* Moved to new location
*/
#warning using old SA-1111.h - update to
#include
www.eeworm.com/read/161040/5563838
txt dead_lock.txt
--sqlplus(1)
drop table a;
create table a(a number);
insert into a values(1);
insert into a values(2);
commit;
update a set a=10 where a=2;
--新打开一个SQL*Plus窗口
--(第二个sqlplus(2))
select * fr
www.eeworm.com/read/161040/5563891
txt column_triger.txt
desc user_triggers;
select trigger_body from user_triggers;
--列级触发器
--如果UPDATE时间不在'08' AND '10',报错!
--检验,如果不UPDATE SAL,PUDATE其它字段,会如何?
CREATE OR REPLACE TRIGGER secure_emp
before UPDATE OF S
www.eeworm.com/read/161040/5563991
txt no_waitlock.txt
--创建实验表1
create table a(a number);
insert into a values(1);
commit;
select * from a for update;
-或
select * from a for update of a.a;(a表的a列)
--新打开一个SQL*Plus窗口
--(第二个会话)
delete from a;
www.eeworm.com/read/161040/5563993
txt no_wait.txt
--创建实验表1
create table a(a number);
insert into a values(1);
commit;
select * from a for update;
-或
select * from a for update of a.a;(a表的a列)
--新打开一个SQL*Plus窗口
--(第二个会话)
delete from a;
www.eeworm.com/read/160745/5565974
proc_
if exists(select name from sysobjects where name='proc_月结' AND TYPE='P' )
DROP PROC proc_月结
go
create proc proc_月结
@年 INT,
@月 INT
AS
INSERT INTO 明细库存表 ( 物料编码,物料描述,月初结存数量,月初材料成本,月初人工成本,月初制造费