Quantcast
Channel: SQL Server Replication forum
Viewing all articles
Browse latest Browse all 4054

SQL Server 2012 - Updateable transactional replication - The subscription is uninitialized or unavailable for immediate updating as it is marked for reinitialization

$
0
0

Hi,

Like a lot of people, when I try to update at the subscriber, I end up with: The subscription is uninitialized or unavailable for immediate updating as it is marked for reinitialization.

All I could find from the threads at the moment is that the Queue Reader Agent might have an expired password. Except that when I right click the agent and select properties it tells me the job does not exists...

How do I go about making that updateable transactional replication work :) ?

Thanks

Edit: At the moment this is what I have configured for the publication
exec sp_addpublication @publication = N'PUB', @description = N'Transactional publication of database ''DB'' from Publisher ''SRV''.', @sync_method = N'concurrent', @retention = 0, @allow_push = N'true', @allow_pull = N'true', @allow_anonymous = N'true', @enabled_for_internet = N'false', @snapshot_in_defaultfolder = N'true', @compress_snapshot = N'false', @ftp_port = 21, @allow_subscription_copy = N'false', @add_to_active_directory = N'false', @repl_freq = N'continuous', @status = N'active', @independent_agent = N'true', @immediate_sync = N'true', @allow_sync_tran = N'true', @allow_queued_tran = N'true', @allow_dts = N'false', @replicate_ddl = 1, @allow_initialize_from_backup = N'false', @enabled_for_p2p = N'false', @enabled_for_het_sub = N'false'
GO


Viewing all articles
Browse latest Browse all 4054

Trending Articles