Stops a MobiLink synchronization schema change.
STOP SYNCHRONIZATION SCHEMA CHANGE
The STOP SYNCHRONIZATION SCHEMA CHANGE statement stops a schema change started by a START SYNCHRONIZATION SCHEMA CHANGE statement. All locks obtained by the START SYNCHRONIZATION SCHEMA CHANGE statement are released.
You must have the SYS_REPLICATION_ADMIN_ROLE system role.
None.
Not in the standard.
The following sequence of SQL statements illustrates how to use START SYNCHRONIZATION SCHEMA CHANGE and STOP SYNCHRONIZATION SCHEMA CHANGE:
START SYNCHRONIZATION SCHEMA CHANGE FOR TABLES GROUPO.SalesOrders, GROUPO.Products SET SCRIPT VERSION = 'version_2' ON SUBSCRIPTION sub1, SET SCRIPT VERSION = 'version_2' ON SUBSCRIPTION sub2; ALTER TABLE GROUPO.SalesOrders ADD SUBTOTAL NUMERIC (10,2); ALTER TABLE GROUPO.Products ALTER QUANTITY BIGINT; STOP SYNCHRONIZATION SCHEMA CHANGE;