[dba-SQLServer] TRIGGER question

Steve Conklin (Developer@UltraDNT) Developer at UltraDNT.com
Sat Jul 9 16:35:45 CDT 2005


Have you tried @@IDENTITY ?

Hth
Steve


-----Original Message-----
From: dba-sqlserver-bounces at databaseadvisors.com
[mailto:dba-sqlserver-bounces at databaseadvisors.com] On Behalf Of Susan
Harkins
Sent: Saturday, July 09, 2005 4:48 PM
To: SQLList
Subject: [dba-SQLServer] TRIGGER question


CREATE TRIGGER AuditRoyaltyUpdateInsert ON dbo.roysched
FOR INSERT, UPDATE
AS
DECLARE @precordID varchar(6)

IF UPDATE(royalty)
  INSERT INTO auditable (actiondescription, recordID, actionuser,
actiondate)
   VALUES ('U', @precordID, User_Name(), GetDate())
ELSE
 INSERT INTO auditable (actiondescription, recordID, actionuser,
actiondate)
   VALUES ('I', @precordID, User_Name(), GetDate())
 
=========The above trigger started  out as a simple audit trigger. Then,
I decided to add the table's primary key value to the audit record, and
I don't know how to do it -- how do I pass the current record's primary
key value, being dbo.roysched.title_id to the @precordID variable? 
 
Susan H. 

_______________________________________________
dba-SQLServer mailing list
dba-SQLServer at databaseadvisors.com
http://databaseadvisors.com/mailman/listinfo/dba-sqlserver
http://www.databaseadvisors.com





More information about the dba-SQLServer mailing list