Collection Contents Previous Next PDF

MobiLink Clients

Adaptive Server Anywhere Client Synchronization Parameters

dbmlsync options

dbmlsync extended options

PollingPeriod (pp) extended option

Function 

Specifies the logscan polling period.

Syntax 

dbmlsync -e pp=number [S | M | H | D ]; ...

Description 

This option specifies the interval between log scans. Use the suffix s, m, h, or d to specify seconds, minutes, hours or days, respectively. The default is 1 minute. If you do not specify a suffix, the default unit of time is minutes.

Logscan polling occurs only when you are scheduling synchronizations or using the sp_hook_dbmlsync_delay hook.

For an explanation of logscan polling, see DisablePolling (p) extended option.

This option is identical to dbmlsync -pp.

This option has a short form and long form: you can use pp or PollingPeriod.

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

See also 

DisablePolling (p) extended option

-pp option

-p option

sp_hook_dbmlsync_delay

Example 

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

dbmlsync -e "pp=5"

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

CREATE SYNCHRONIZATION SUBSCRIPTION
   TO sales_publication
   FOR ml_user1
   OPTION pp='5';

Collection Contents Previous Next PDF