If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
Have you considered using triggers to do this type of work. If you trigger on insert, update or delete the code inside the trigger could perform the operation on both tables.
Another solution is to use replication but this is more complex to perform, setup and maintain.
Have you considered using triggers to do this type of work. If you trigger on insert, update or delete the code inside the trigger could perform the operation on both tables.
Another solution is to use replication but this is more complex to perform, setup and maintain.
Thanks, I hadn't considered that (didn't know about it really). I have found a couple of tutorials on the subject and will give it a go.