Resuming database connections

You can resume either a specific (primary or replicate) database connection, or all primary or all replicate database connections.

NoteWhen you resume a replicate database connection, you also resume all subscriptions in that connection.

StepsTo resume a specific primary database connection

  1. Use sp_resumeprimaryconn with the following syntax to specify a database connection:

    sp_resumeprimaryconn "conn_name"
    

    where conn_name is the connection name in the form ds.db.

StepsTo resume all primary database connections

  1. Use sp_resumeprimaryconn without specifying a database connection:

    sp_resumeprimaryconn
    

StepsTo resume a specific replicate database connection

  1. Use sp_resumereplicateconn with the following syntax to specify a database connection:

    sp_resumereplicateconn "conn_name"
    

    where conn_name is the connection name in the form ds.db.

StepsTo resume all replicate database connections

  1. Use sp_resumereplicateconn without specifying a database connection:

    sp_resumereplicateconn