Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
Mobile Link の同期スキーマ変更を停止します。
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;