Question : Exchange CCR Summary CopyStatus:Suspended

Hello,

I'm running Exchange 2007 sp1 on a CCR. I noticed that on Monday moring the summary copy status on all the storage groups are suspended. The event Id I'getting on the passive node of the cluster is:
"The Microsoft Exchange Replication Service was unable to perform an incremental re-seed of the passive node for the clustered mailbox server "server\Default Mailbox Store SG' because the log files on the active node have diverged too widely from the log files on the passive node. A full re-seed of the passive node for this storage group is required. Re-seeding can be done by using the Update-StorageGroupCopy cmdlet in the Exchange Management Shell."

now I'm writing up a document to do this step by step after business hours. I need help as I am fairly new to CCR technology.

What steps should I take to reseed the of the passive node?

Many thanks for the help,
Tacobell2000

Answer : Exchange CCR Summary CopyStatus:Suspended

Here is a simple example
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
create table test(
 id int identity (1,1) not null primary key,
 someint int,
 triggerresult int
 )
 go
 create trigger testtrigger on test after insert, update as
 update test 
  set triggerresult = 2 * i.someint
  from test t
  join inserted i
  on i.id = t.id
 go
 
 insert into test (someint)
 select 5 union all
 select 100
 
 select * from test
Random Solutions  
 
programming4us programming4us