The retention is zero. The parameters used for adding publication are :
exec sp_addpublication
@add_to_active_directory = N'false',
@allow_anonymous = N'false',
@allow_dts = N'false',
@allow_initialize_from_backup = N'false',
@allow_pull = N'true',
@allow_push = N'true',
@allow_queued_tran = N'false',
@allow_subscription_copy = N'false',
@allow_sync_tran = N'false',
@autogen_sync_procs = N'false',
@compress_snapshot = N'false',
@description = @descr,
@enabled_for_het_sub = N'false',
@enabled_for_internet = N'false',
@enabled_for_p2p = N'false',
@ftp_login = N'anonymous',
@ftp_port = 21,
@immediate_sync = N'false',
@independent_agent = N'true',
@post_snapshot_script = @post_snap,
@publication = @pubname,
@repl_freq = N'continuous',
@replicate_ddl = 1,
@retention = 0,
@snapshot_in_defaultfolder = N'true',
@status = N'active',
@sync_method = N'concurrent'
"Paul Ibison" <Paul.Ibison (AT) ReplicationAnswers (DOT) Com.(donotspam)> wrote in
message news:C9FEE2A8-E15A-4B7D-A827-3BACD834F6FF (AT) microsoft (DOT) com...
Quote:
Has the retention period been exceeded for these particular snapshots?
Paul Ibison |