you can do a
|||I am sorry but i am really unfamiliar with the trigger functions. So if anyone can help i would appreciate it.|||Check out the DELETE TRIGGER portion of this article:Auditing Through Triggers.
DECLARE @.var1 ..., @.var2...
SELECT
@.var1=Col1
@.var2=Col2
...
FROM
DELETEDINSERT INTO <table> <cols> VALUES (@.var1, @.var2...)
Terri|||Exactly what i needed. Thank you very much!
No comments:
Post a Comment