Watch the 7.3 Webinar On-Demand
This new release brings updates to Universal Storage, query
optimization, and usability that you won’t want to miss.
Specify if an existing database should begin using synchronous or asynchronous replication.
ALTER DATABASE <database_name> { SET | WITH } { SYNC | ASYNC } REPLICATION;
<database_name>
is the name of the existing database for which you want to specify the replication setting.The following example specifies that the database database_name
should begin using synchronous replication.
ALTER DATABASE database_name SET SYNC REPLICATION;
Related Topics