Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
停止 MobiLink 同步模式更改。
STOP SYNCHRONIZATION SCHEMA CHANGE
STOP SYNCHRONIZATION SCHEMA CHANGE 语句会停止通过 START SYNCHRONIZATION SCHEMA CHANGE 语句启动的模式更改。START SYNCHRONIZATION SCHEMA CHANGE 语句获取的所有锁都被释放。
DBA 特权
无。
SQL/2008 服务商扩充。
下面的 SQL 语句序列阐释了如何使用 START SYNCHRONIZATION SCHEMA CHANGE 和 STOP SYNCHRONIZATION SCHEMA CHANGE:
START SYNCHRONIZATION SCHEMA CHANGE ON DBA.Sales, DBA.Products SET SCRIPT VERSION = 'version 2'; ALTER TABLE DBA.Sales ADD SUBTOTAL NUMERIC (10,2); ALTER TABLE DBA.Products ALTER QUANTITY BIGINT; STOP SYNCHRONIZATION SCHEMA CHANGE;