Cannot Move user Mail box to another Exchange database which is DAG member

azhar Nasim 0 Reputation points
2023-03-16T17:27:13.2433333+00:00

Moving user mailbox in Exchange Server 2016 DAG Active Database to another Active Database on another member gives following errors

Mailbox migration stops at 95 % giving the below error

Error: MigrationMRSPermanentException : Error: Mailbox changes failed to replicate: Database c0c1dbe-12f4-45b5-8498-51756a2ffc5c doesn’t satisfy the constraint Second Copy because the commit time 11/16/2022 5:00:16 AM isn’t guaranteed by replication time

Microsoft Exchange Online
Exchange Server
Exchange Server
A family of Microsoft client/server messaging and collaboration software.
1,057 questions
Exchange Server Development
Exchange Server Development
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Development: The process of researching, productizing, and refining new or existing technologies.
504 questions
Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,326 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Andy David - MVP 140.8K Reputation points MVP
    2023-03-16T17:38:44.5166667+00:00

    Is replication good between those databases?

    Get-mailboxdatabasecopy
    

    You can bypass the restriction, but I would look at the health of the databases first.

    Set-mailboxdatabase -identity <target database> -DataMoveReplicationConstraint None
    
    0 comments No comments

  2. Amit Singh 4,846 Reputation points
    2023-03-20T08:43:18.34+00:00

    Please remove the failed move request and create a new one by adding the skipmoving parameter:

    New-MoveRequest -identity <mailbox> -skipmoving:folderviews,folderrestrictions -TargetDatabase <database>  

    And see if the shared mailbox can be moved successfully.

    Set-MailboxDatabaseCopy cmdlets in the Exchange Management Shell to view and configure database copy settings, such as replay lag time, truncation lag time, and activation preference order. For detailed steps to view and configure database copy settings, see Configure mailbox database copy properties.

    0 comments No comments