Viewing 15 posts - 46 through 60 (of 441 total)
Can you tell me where I need to make the modification, to include multiple inserts.
March 9, 2016 at 8:51 am
Hi Sean\Martin,
Here is my revised code
USE [IMIS_TEST]
GO
/****** Object: Trigger [dbo].[Orders_Online_Reg] Script Date: 03/09/2016 09:29:20 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER TRIGGER [dbo].[Orders_Online_Reg]
ON [dbo].[Orders]
AFTER insert
AS
DECLARE @ORDER_NUMBER varchar(100)
DECLARE @ID...
March 9, 2016 at 8:21 am
Hi Sean & Martin,
Thanks for your feedbacks.
I am trying to test this trigger and see if I get an email when I register for a class in our test env...
March 8, 2016 at 12:15 pm
Igor Micev (3/8/2016)
SQLisAwE5OmE (3/8/2016)
Igor Micev (3/8/2016)
If the issue still exists, then we're going to see...
March 8, 2016 at 9:03 am
Igor Micev (3/8/2016)
Fist thing, did you check the fragmentation of indexes? Are the statistics of those tables updated?If the issue still exists, then we're going to see other aspects.
Yes, indexes...
March 8, 2016 at 8:51 am
Sean Lange (3/7/2016)
SQLisAwE5OmE (3/7/2016)
Sean Lange (3/7/2016)
March 7, 2016 at 12:59 pm
Sean Lange (3/7/2016)
March 7, 2016 at 11:30 am
Hi Guys,
Please help.
I was trying to create the Insert Trigger, below is the code.
I did not write the code from scratch, found a DML trigger, from this post....
http://www.sqlservercentral.com/Forums/Topic1441032-1550-3.aspx
I...
March 7, 2016 at 9:48 am
drew.allen (3/1/2016)
If this is a third party app, writing a trigger on the table will almost certainly invalidate any maintenance agreement that you have with them.Drew
Hmm....don't really agree....I'm not touching...
March 1, 2016 at 4:24 pm
Sean Lange (3/1/2016)
SQLisAwE5OmE (3/1/2016)
-Check if any changes to ACTIVITY table
-Activity_Type = 'MEETING'
-Product_Code = different product codes for different programs/classes.
-Find out the Product_Code for which had...
March 1, 2016 at 1:12 pm
This is my breakdown of requirement.
-Check if any changes to ACTIVITY table
-Activity_Type = 'MEETING'
-Product_Code = different product codes for different programs/classes.
-Find out the Product_Code for which had activity
-First 2 characters...
March 1, 2016 at 12:48 pm
Sean Lange (3/1/2016)
March 1, 2016 at 12:41 pm
drew.allen (2/24/2016)
SQLisAwE5OmE (2/24/2016)
This query gives me the exact...
February 24, 2016 at 10:35 am
Viewing 15 posts - 46 through 60 (of 441 total)