Error message 18750

If a companion server issues error message 18750, check the @@cmpstate of the servers. If the primary companion is in normal companion mode, but the secondary companion is in secondary failover mode, the cluster is in an inconsistent state, and you must recover manually. This inconsistent state may be caused by an sp_companion 'prepare_failback' command failing on the secondary companion. You can determine whether this happened by examining the log on the secondary node. To recover from error 18750:

  1. Shut down both the primary and the secondary companions by halting both their packages.

  2. Restart the secondary companion by starting the package for the secondary companion.

  3. Repair all databases marked “suspect.” To determine which databases are suspect, issue:

    select name, status from sysdatabases
    

    Databases marked suspect have a status value of 320.

  4. Allow updates to system tables:

    sp_configure “allow updates”, 1
    
  5. For each suspect, failed-over database, perform the following:

    1> update sysdatabase set status=status-256 where name='database_name'
    2> go
    1> dbcc traceon(3604)
    2> go
    1> dbcc dbrecover(database_name)
    2>go
    
  6. From the secondary companion, issue:

    sp_companion primary_companion_name, prepare_failback
    

    Make sure that this command executes successfully.

  7. Resume normal companion mode. From the primary companion, issue:

    sp_companion secondary_companion, resume