SQL Server replication - how to sync tables from internal database to read-only website database
Posted
by frankadelic
on Stack Overflow
See other posts from Stack Overflow
or by frankadelic
Published on 2010-05-14T23:23:03Z
Indexed on
2010/05/15
1:44 UTC
Read the original article
Hit count: 451
I have an internal SQL Server 2005 database "ADMIN_DATA" that is used by admin users.
We would like to sync three of the database tables in ADMIN_DATA out to another SQL Server 2005 database "WEB_DATA", which is used by a public web app.
WEB_DATA is read-only - only SELECT statements are allowed, while ADMIN_DATA is updated all the time.
What is the best solution? How can this be accomplished with minimal custom coding and/or changes to database tables?
Notes:
ADMIN_DATA and WEB_DATA are different physical machines and on different subnets.
The syncing operation doesn't need to be instantaneous.
© Stack Overflow or respective owner