Viewing 7 posts - 1 through 7 (of 7 total)
Thanks everyone for the replies...I could not see around this corner. This is the logic I was looking for..
August 10, 2016 at 8:32 am
Greetings Guys I decided to go ahead and post the solution I came up with.
ALTER TRIGGER trg_mrk_inactive
ON [dbo].[emp]
AFTER DELETE --CREATES TRIGGER AFTER DELETE ACTION
AS
BEGIN
INSERT INTO Emphistory ---WILL...
April 30, 2016 at 2:57 pm
How would I be able to similarly do this as a trigger.
April 30, 2016 at 9:30 am
Thank You... I do not know why my other expected solution did not work for this...I really beat my head against a rock on this one... but I understand the...
April 29, 2016 at 2:38 pm
I want to update the history record if a update has occured. (I have two tables. One emp and the other emphistory. When the empname or Deptid field updates in...
April 29, 2016 at 2:10 pm
Here is my final lunge at this problem... I would like to think im going in the right direction....
--b.Trigger 2 – Build a tirgger on the emp table after an...
April 29, 2016 at 12:48 pm
Yes...it is home work... My real question is actually can the following question be answered with the attached data. I feel that the question has a flaw to it....what...
April 15, 2016 at 6:12 am
Viewing 7 posts - 1 through 7 (of 7 total)