Client-side Replication for SQL Server?

Posted by Mighty Z on Stack Overflow See other posts from Stack Overflow or by Mighty Z
Published on 2010-04-27T18:54:02Z Indexed on 2010/04/27 19:03 UTC
Read the original article Hit count: 349

I'd like to have some degree of fault tolerance / redundancy with my SQL Server Express database. I know that if I upgrade to a pricier version of SQL Server, I can get "Replication" built in. But I'm wondering if anyone has experience in managing replication on the client side. As in, from my application:

  • Every time I need to create, update or delete records from the database -- issue the statement to all n servers directly from the client side
  • Every time I need to read, I can do so from one representative server (other schemes seem possible here, too).
  • It seems like this logic could potentially be added directly to my Linq-To-SQL Data Context.

Any thoughts?

© Stack Overflow or respective owner

Related posts about sql-server

Related posts about linq-to-sql