Mar 7, 2001 #1 krkX Programmer Nov 12, 2000 54 NL Hi there, Is there a way to monitor changes to a table? eg If I add or update a record can the system tell me that it has changed ... ?(stored procedures??) (i am using SQL server 7) Thanks, krkX
Hi there, Is there a way to monitor changes to a table? eg If I add or update a record can the system tell me that it has changed ... ?(stored procedures??) (i am using SQL server 7) Thanks, krkX
Mar 8, 2001 1 #2 grega Programmer Feb 2, 2000 932 GB You could write Update/Insert/Delete triggers for each table you want to track, and record all changes in some form of auditing table. Greg. Upvote 0 Downvote
You could write Update/Insert/Delete triggers for each table you want to track, and record all changes in some form of auditing table. Greg.