# CONTINUE REPLICATING

The `CONTINUE REPLICATING` command resumes replicating the database after pausing via [PAUSE REPLICATING](https://docs.singlestore.com/db/v9.1/reference/sql-reference/operational-commands/pause-replicating.md).

## Syntax

To resume replication from the master aggregator in the Disaster Recovery (DR) secondary cluster, use the following syntax:

```
CONTINUE REPLICATING <database_name>;

```

## Remarks

* `CONTINUE REPLICATING` can only be used to resume replication from the primary database on the remote host that was specified when [REPLICATE DATABASE](https://docs.singlestore.com/db/v9.1/reference/sql-reference/operational-commands/replicate-database.md) was originally run.
* This command causes implicit commits. Refer to [COMMIT](https://docs.singlestore.com/db/v9.1/reference/sql-reference/data-manipulation-language-dml/commit.md) for more information.
* If the master aggregator fails on the DR secondary cluster, you can either restart the master aggregator node successfully, or pick a child aggregator to [promote to master](https://docs.singlestore.com/db/v9.1/reference/sql-reference/cluster-management-commands/promote-aggregator-to-master.md). Then, run `CONTINUE REPLICATING` on the master aggregator.
* Refer to the [Permissions Matrix](https://docs.singlestore.com/db/v9.1/reference/sql-reference/security-management-commands/permissions-matrix.md) for the required permissions.

## Example

```

CONTINUE REPLICATING ExampleDatabase;
Query OK, 1 row affected (0.26 sec)

```

***

Modified at: June 11, 2026

Source: [/db/v9.1/reference/sql-reference/operational-commands/continue-replicating/](https://docs.singlestore.com/db/v9.1/reference/sql-reference/operational-commands/continue-replicating/)

(An index of the documentation is available at /llms.txt)
