Hi all,
I've hit on this subject on this site before as part of other requests but now I am needing to make some progress on it...
I have a Database Table (tblCustomers) at our office in town A. There is an identical table in town B. Whenever there is an insert/update/delete command sent to town A, I need the same update to be sent to town B.
Due to lots of connection drops between sites, I cannot guarantee that when the town A update takes place, the connection to town B will be active.
Because of this I need the system to do something like this..
then a corresponding command to be held somewhere (maybe in a table) and constantly retried until it is successful, upon which time it is deleted from that table. (to be added again when there is another update)
Could anyone give me a starting point for this task please?
Thanks in advance for any replies..
John
.NET 2.0, Visual Studio 2005, SQL Server 2005 Express
I've hit on this subject on this site before as part of other requests but now I am needing to make some progress on it...
I have a Database Table (tblCustomers) at our office in town A. There is an identical table in town B. Whenever there is an insert/update/delete command sent to town A, I need the same update to be sent to town B.
Due to lots of connection drops between sites, I cannot guarantee that when the town A update takes place, the connection to town B will be active.
Because of this I need the system to do something like this..
Code:
UPDATE [TownA].[dbo].[tblCustomers]
SET [Cust_Name] = 'My Biggest Customer'
WHERE [Cust_Code] = 'BIGCUST'
then a corresponding command to be held somewhere (maybe in a table) and constantly retried until it is successful, upon which time it is deleted from that table. (to be added again when there is another update)
Could anyone give me a starting point for this task please?
Thanks in advance for any replies..
John
.NET 2.0, Visual Studio 2005, SQL Server 2005 Express