I need help on how I can do this:
Everytime there is a change on the table1 from database1, I need to insert the change in table1 from database2. Table1 has the following columns:
DB_Name
Table_Name
Affected_Column
Old_Value
New_Value
Date_Modified
Modified_By
So I will have a trigger on update in the table1. But what will be the best approach to do this if I have several columns in table1. Should I use Update(column1)....
Please help. Thanks.
Everytime there is a change on the table1 from database1, I need to insert the change in table1 from database2. Table1 has the following columns:
DB_Name
Table_Name
Affected_Column
Old_Value
New_Value
Date_Modified
Modified_By
So I will have a trigger on update in the table1. But what will be the best approach to do this if I have several columns in table1. Should I use Update(column1)....
Please help. Thanks.