代码搜索:trigger

找到约 3,730 项符合「trigger」的源代码

代码结果 3,730
www.eeworm.com/read/130188/5963167

java triggerlistener.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
www.eeworm.com/read/121089/6069898

asm llevtstg.asm

PAGE 56,132 TITLE LLEVTSTG - Low-level joystick support ;*** ; LLEVTSTG - Low-level joystick support ; ; Copyright 1987, Microsoft Corporation ; ;Purpose: ; ;***************************
www.eeworm.com/read/162634/5515240

java triggerdef.java

/* Copyright (c) 2001-2005, The HSQL Development Group * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that
www.eeworm.com/read/157111/5607534

java triggerdef.java

/* Copyright (c) 2001-2005, The HSQL Development Group * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that
www.eeworm.com/read/154583/5636125

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
www.eeworm.com/read/284875/8885547

sql 1-create trigger.sql

CREATE TRIGGER trgInsTransactions ON TransactionDetails.Transactions AFTER INSERT AS UPDATE CustomerDetails.Customers SET ClearedBalance = ClearedBalance + (SELECT CASE WHEN CreditType = 0 THEN
www.eeworm.com/read/284875/8885561

sql 15-drop-ddl-trigger.sql

DROP TRIGGER trgSprocs ON DATABASE
www.eeworm.com/read/284875/8885572

sql 2-test trigger.sql

SELECT ClearedBalance FROM CustomerDetails.Customers WHERE customerId=1 INSERT INTO TransactionDetails.Transactions (CustomerId,TransactionType, Amount,RelatedProductId, DateEntered) VALUES (1,2,
www.eeworm.com/read/284875/8885577

sql 14-test-ddl-trigger.sql

CREATE PROCEDURE Test1 AS SELECT 'Hello all'
www.eeworm.com/read/284875/8885588

sql 13-ddl trigger.sql

CREATE TRIGGER trgSprocs ON DATABASE FOR CREATE_PROCEDURE, ALTER_PROCEDURE, DROP_PROCEDURE AS IF DATEPART(hh,GETDATE()) > 9 AND DATEPART(hh,GETDATE()) < 17 BEGIN DECLARE @Message nvarchar(max)