Contents Index ConflictRetries (cr) extended option DownloadBufferSize (dbs) extended option

MobiLink Synchronization Reference
  MobiLink Synchronization Client
    dbmlsync options
      -e extended options

DisablePolling (p) extended option

Function 

Disables automatic logscan polling.

Syntax 

dbmlsync -e p= { ON | OFF }; ...

Description 

In order to build an upload stream, dbmlsync must scan the transaction log. Usually it does this just before synchronization. However, when synchronizations are scheduled, dbmlsync by default scans the log in the time between scheduled synchronizations; and when the sp_hook_dbmlsync_delay hook is used, dbmlsync by default scans the log in the pause that occurs just before synchronization. This behavior is more efficient because the log is already at least partially scanned when synchronization begins. This default behavior is called logscan polling.

Logscan polling is on by default but only has an effect when synchronizations are scheduled or when sp_hook_dbmlsync_delay hook is used. When in effect, polling occurs at set intervals: dbmlsync scans to the end of the log, waits for the polling period, and then scans any new transactions in the log. By default, the polling period is 1 minute, but it can be changed with the dbmlsync -pp option or the PollingPeriod extended option.

The default is to not disable logscan polling (OFF).

This option is identical to dbmlsync -p.

This option has a short form and long form: you can use p orDisablePolling.

You can also store extended options in the database. For more information about dbmlsync extended options, see -e extended options.

See also 

PollingPeriod (pp) extended option

-p option

-pp option

Example 

The following dbmlsync command line illustrates how you can set this option when you start dbmlsync:

dbmlsync -e "p=on"

The following SQL statement illustrates how you can store this option in the database:

CREATE SYNCHRONIZATION SUBSCRIPTION
   TO sales_publication
   FOR ml_user1
   OPTION p='on';

Contents Index ConflictRetries (cr) extended option DownloadBufferSize (dbs) extended option