Use this statement to restart logging of deletes for MobiLink synchronization.
START SYNCHRONIZATION DELETE
Ordinarily, SQL Anywhere and UltraLite automatically log any changes made to tables or columns that are part of a synchronization, and upload these changes to the consolidated database during the next synchronization. You can temporarily suspend automatic logging of delete operations using the STOP SYNCHRONIZATION DELETE statement. The START SYNCHRONIZATION DELETE statement allows you to restart the automatic logging.
When a STOP SYNCHRONIZATION DELETE statement is executed, none of the delete operations executed on that connection are synchronized. The effect continues until a START SYNCHRONIZATION DELETE statement is executed. Repeating STOP SYNCHRONIZATION DELETE has no additional effect.
A single START SYNCHRONIZATION DELETE statement restarts the logging, regardless of the number of STOP SYNCHRONIZATION DELETE statements preceding it.
Do not use START SYNCHRONIZATION DELETE if your application does not synchronize data.
Must have DBA authority.
None.
SQL/2003 Vendor extension.
The following sequence of SQL statements illustrates how to use START SYNCHRONIZATION DELETE and STOP SYNCHRONIZATION DELETE:
-- Prevent deletes from being sent -- to the consolidated database STOP SYNCHRONIZATION DELETE; -- Remove all records older than 1 month -- from the remote database, -- NOT the consolidated database DELETE FROM PROPOSAL WHERE last_modified < months( CURRENT TIMESTAMP, -1 ) -- Re-enable all deletes to be sent -- to the consolidated database -- DO NOT FORGET to start this START SYNCHRONIZATION DELETE; -- Commit the entire operation, -- otherwise rollback everything -- including the stopping of the deletes commit; |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |