﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / SQL Server 2012 / SQL 2012 - General  / Replication: SQL 2008 R2 Publisher to SQL 2012 Subscriber / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Wed, 22 May 2013 13:04:57 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Replication: SQL 2008 R2 Publisher to SQL 2012 Subscriber</title><link>http://www.sqlservercentral.com/Forums/Topic1283357-2799-1.aspx</link><description>Using the sql script worked.Thanks</description><pubDate>Mon, 25 Feb 2013 07:10:29 GMT</pubDate><dc:creator>William Soranno</dc:creator></item><item><title>RE: Replication: SQL 2008 R2 Publisher to SQL 2012 Subscriber</title><link>http://www.sqlservercentral.com/Forums/Topic1283357-2799-1.aspx</link><description>There are some issues if you connect to SS2012 (Subscriber) with SQL Management Studio 2008 or 2008 R2 (Publisher/Distributor).Try with stored procedure or with SQLCMDDECLARE @publication AS sysname;DECLARE @subscriber AS sysname;DECLARE @subscriptionDB AS sysname;DECLARE @frequency_type as int;DECLARE @subscriber_security_mode as int;DECLARE @subscriber_login AS sysname;DECLARE @subscriber_password AS sysname;SET @publication = ______________ ;SET @subscriber = ________________;SET @subscriptionDB = _______________;SET @frequency_type=  ___ ; --(you must check frequency type)SET @subscriber_security_mode= ___ ; --(you must check security mode)SET @subscriber_login=______________; SET @subscriber_password=__________; --(if security mode is 0, SQL Server authentication)--Add a push subscription to a transactional publication.USE [DBName]EXEC sp_addsubscription   @publication = @publication,   @subscriber = @subscriber,   @destination_db = @subscriptionDB,   @subscription_type = N'push';  EXEC sp_addpushsubscription_agent   @publication = @publication,   @subscriber = @subscriber,   @subscriber_db = @subscriptionDB,   @subscriber_security_mode=@subscriber_security_mode,  @subscriber_login=@subscriber_login,  @subscriber_password=@subscriber_password,  @frequency_type = @frequency_type,  @job_login = ___________,   @job_password = __________;GO</description><pubDate>Mon, 25 Feb 2013 05:12:47 GMT</pubDate><dc:creator>jns on the net</dc:creator></item><item><title>RE: Replication: SQL 2008 R2 Publisher to SQL 2012 Subscriber</title><link>http://www.sqlservercentral.com/Forums/Topic1283357-2799-1.aspx</link><description>I am not sure but I suspect that the distributor you are using is SQL 2008 R2.  Normally, I would expect the distributor to be the most recent version of all of the SQL servers involved (in your case, this would mean that your distributor should be SQL 2012)</description><pubDate>Thu, 21 Feb 2013 20:53:52 GMT</pubDate><dc:creator>happycat59</dc:creator></item><item><title>RE: Replication: SQL 2008 R2 Publisher to SQL 2012 Subscriber</title><link>http://www.sqlservercentral.com/Forums/Topic1283357-2799-1.aspx</link><description>I must be missing something. I have just finished rebuilding my publishing sql server on sql server 2008 r2. When I try to add one of my sql server 2012 servers as a subscriber I get the following error message:The selected Subscriber does not satisfy the minimum version compatibility level of the selected publication.The publisher is 2008 R2 SP2 and the subscriber is 2012 SP1.</description><pubDate>Thu, 21 Feb 2013 01:48:35 GMT</pubDate><dc:creator>William Soranno</dc:creator></item><item><title>RE: Replication: SQL 2008 R2 Publisher to SQL 2012 Subscriber</title><link>http://www.sqlservercentral.com/Forums/Topic1283357-2799-1.aspx</link><description>Yes, sorry, I did miss that bit.Might want to also include the following, as merge is an exception:  "A Subscriber to a merge publication can be any version less than or equal to the Publisher version."</description><pubDate>Tue, 08 May 2012 14:29:49 GMT</pubDate><dc:creator>Stivan Widick</dc:creator></item><item><title>RE: Replication: SQL 2008 R2 Publisher to SQL 2012 Subscriber</title><link>http://www.sqlservercentral.com/Forums/Topic1283357-2799-1.aspx</link><description>Did you read anything from the link?The 3rd bullet point in:Subscriber version depends on the type of publication:A Subscriber to a transactional publication can be any version within two versions of the Publisher version. For example: a SQL Server 2005 Publisher running can have SQL Server 2012 Subscribers; and a SQL Server 2012 Publisher can have SQL Server 2005 Subscribers.</description><pubDate>Tue, 08 May 2012 14:13:21 GMT</pubDate><dc:creator>JeremyE</dc:creator></item><item><title>RE: Replication: SQL 2008 R2 Publisher to SQL 2012 Subscriber</title><link>http://www.sqlservercentral.com/Forums/Topic1283357-2799-1.aspx</link><description>The link that the responder answered with has nothing to do with the question that was asked.</description><pubDate>Tue, 08 May 2012 14:09:38 GMT</pubDate><dc:creator>Stivan Widick</dc:creator></item><item><title>RE: Replication: SQL 2008 R2 Publisher to SQL 2012 Subscriber</title><link>http://www.sqlservercentral.com/Forums/Topic1283357-2799-1.aspx</link><description>Yes, this is possible.[url=http://msdn.microsoft.com/en-us/library/ms143699.aspx]http://msdn.microsoft.com/en-us/library/ms143699.aspx[/url]</description><pubDate>Fri, 13 Apr 2012 14:09:54 GMT</pubDate><dc:creator>JeremyE</dc:creator></item><item><title>Replication: SQL 2008 R2 Publisher to SQL 2012 Subscriber</title><link>http://www.sqlservercentral.com/Forums/Topic1283357-2799-1.aspx</link><description>Just curious to see if this is something that's possible to do. I'd imagine that there should not be any problems, since you can do the same with 2005 to 2008, perhaps I've overlooked something? This will be for transactional replication.</description><pubDate>Fri, 13 Apr 2012 12:41:20 GMT</pubDate><dc:creator>DVSQL</dc:creator></item></channel></rss>