Creating replication between SQL Server 2000 (publisher) and SQL Server 2008 (subscriber)

这一生的挚爱 提交于 2019-12-11 05:19:04

问题


I have old database server as SQL Server 2000 whose data has to be periodically updated to the SQL Server 2008 server (may be one time per day). So I have planned to use the replication. First I have created distribution database in SQL Server 2000 & added the new database as publisher.

But when I created the subscriber in SQL Server 2008 & connects to SQL Server 2000 then the publisher doesn't appear in the list. What could be the reason, I am using SQL Server 2008 express edition or if any one could point out to the step by step guide for setting up replication between SQL Server 2000 and 2008? I have used the wizard in SQL Server 2000 for creating distribution & publisher.


回答1:


Mixed versions are supported, but:

  • Distributor version must always be equal or newer than Publisher
  • Subscribers for transactional replication can be within 2 versions newer/older of Publisher
  • Subscribers for merge replication must be equal or older than Publisher


来源:https://stackoverflow.com/questions/7009212/creating-replication-between-sql-server-2000-publisher-and-sql-server-2008-su

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!