Viewing 11 posts - 16 through 26 (of 26 total)
lnoland (10/26/2010)
zlthomps (10/21/2010)
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
CREATE TRIGGER [EquityLeadDeDup]
ON [dbo].[WebLead]
INSTEAD OF INSERT
AS
BEGIN
SET NOCOUNT ON;
DECLARE @EQ_CID INT,
@EQ_MsgDate SMALLDATETIME,
@EQ_ToAddress VARCHAR(64),
@EQ_LeadType INT
IF EXISTS(
SELECT
...
October 27, 2010 at 11:24 am
CELKO (10/22/2010)
2) Audits are done outside of the...
October 25, 2010 at 7:53 am
Would this even remotely be close?
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
CREATE TRIGGER [EquityLeadDeDup]
ON [dbo].[WebLead]
INSTEAD OF INSERT
AS
BEGIN
SET NOCOUNT ON;
DECLARE @EQ_CID INT,
@EQ_MsgDate SMALLDATETIME,
@EQ_ToAddress VARCHAR(64),
@EQ_LeadType INT
IF EXISTS(
SELECT
@EQ_CID,...
October 21, 2010 at 9:15 am
IF Boolean_expression
{ sql_statement | statement_block }
[ ELSE
{ sql_statement | statement_block } ]
Doesnt look like your recommendation...
October 21, 2010 at 8:20 am
SeanLange (10/20/2010)
create trigger myInsertTrigger
instead of insert on MyTable
as begin
if exists(select field from MyTable) then
...
October 20, 2010 at 4:07 pm
GSquared (10/20/2010)
E.g.:
select case...
October 20, 2010 at 2:40 pm
Here is the full Script... Tele sense is throwing an error at the INSERT statement where I am trying to populate the temp table.
DECLARE
...
October 4, 2010 at 7:22 pm
Now that Im thinking about it, is it even possible to query xml from a column with a data type other than xml? 😀
March 9, 2009 at 5:05 pm
Gift Peddie (2/23/2009)
February 23, 2009 at 3:01 pm
Anybody have an ideas on this? Thanks for any help.
Zach
February 22, 2009 at 6:10 pm
Thanks for moving this, Steve.
February 20, 2009 at 5:14 pm
Viewing 11 posts - 16 through 26 (of 26 total)