I need to keep track of changes made to a table. Any time the fields rqtyrequested and dtshipdate are changed I would like it to write the old record to a new table. Here is my first attempt. Am I even close????insert into shipdtlaud(stradingpartner,sshipto,sorigdoc,spartnbr,rqtyrequested,dtshipdate_sqlselectshipdtl.stradingpartner,shipdtl.sshipto,shipdtl.sorigdoc,shipdtl.spartnbr,shipdtl.rqtyrequested,shipdtl.dtshipdate_sqlfrom shipdtl join inserted on shipdtl.stradingpartner = inserted.stradingpartner and shipdtl.sshipto = inserted.sshipto and shipdtl.spartnbr = inserted.spartnbr and shipdtl.sorigdoc = inserted.sorigdocwhere inserted.rqtyrequested <> shipdtl.rqtyrequested or inserted.dtshipdate_sql <> shipdtl.dtshipdate_sql