Database Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsDatabasesDatabase Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here
  #1  
Old January 31st, 2005, 08:52 PM
sr_aneesh sr_aneesh is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Posts: 4 sr_aneesh User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 31 m 37 sec
Reputation Power: 0
Question Update and Insert Triggers

I have a Table Called tblEmpl and another called tblTrackEmpl

I want that whenever a record is inserted for any New Employee in the tblEmpl table it should be Inserted to the tblTrackEmpl table. Thereafter when ever the details (for eg:emplcode) of that particular Employee is Updated (Only when Updated) in the TblEmpl Table it should be added(a new record) to the tblTrackEmpl table.

i wrote Two Trigger onr for INSERT and other for UPDATE which is as follows


CREATE TRIGGER EMPL_INSERT ON tblEmpl AFTER INSERT
AS
IF @@ROWCOUNT=0 RETURN
INSERT tblTrackEmpl
SELECT * FROM inserted



CREATE TRIGGER EMPL_update ON tblEmpl AFTER UPDATE
AS
declare
@id1 int
begin
select @id1=id from inserted
IF update(emplcode)
and
(select count(*) from Inserted) = 1

INSERT tblTrackEmpl
SELECT * FROM tblEmpl where id=@id1
End



But when ever i Just Click Update from the FrontEnd evenif i dont make anychanges to that record a new record is inserted to the tblTrackEmpl Table


What could be the solution

Thanx in Advance

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsDatabasesDatabase Development > Update and Insert Triggers


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway