cancel
Showing results for 
Search instead for 
Did you mean: 

Suspended/Resume

0 Kudos

Hi,

How to Suspended/Resume Replication Task in SDI.would really appreciate if some one help on this.

Regards

Ramesh

Accepted Solutions (1)

Accepted Solutions (1)

werner_daehn
Active Contributor
0 Kudos

As a replication is a transactional process, you cannot suspend a single task. Either

alter remote subscription <name> reset;

which removes the subscription from being read, hence you must start with an initial load to bring the data back to the current & consistent state.

or

alter remote source <rs name> suspend capture;
alter remote source <rs name> resume capture;<br>

which pauses all subscriptions and hence does not cause data inconsistencies between the tables, thus can be resumed.

0 Kudos

Thanks Werner .

Answers (0)