Transactional Push subcription (Change Syn_Type)
-
Thursday, March 08, 2012 10:57 AM
I have created transactional push subscription, one of the major query is as following
/////////////////////////////////////////////////////////////////////////////////////////
exec sp_addsubscription @publication = N'TestP', @subscriber = N'VM-2008-81', @destination_db = N'LogDatabase', @subscription_type = N'Push', @sync_type = N'replication support only', @article = N'all', @update_mode = N'queued failover', @subscriber_type = 0;/////////////////////////////////////////////////////////////////////////////////////////
Now I want to change @sync_type = 'automatic' and don't want to re-create
Please help me to change sync_type of existing subscription
All Replies
-
Thursday, March 08, 2012 5:54 PMModerator
We don't have an option for changing this property using sp_changesubscription.
Ashwin and Hilary offer up some workarounds in this thread here: http://social.msdn.microsoft.com/Forums/en-US/sqlreplication/thread/e894dfba-3266-4499-9100-3dc410860884
- Marked As Answer by Shahzad Aamir Thursday, March 08, 2012 7:09 PM

