Collection Contents Previous Next PDF

MobiLink Clients

Adaptive Server Anywhere Client Synchronization Parameters

dbmlsync options

dbmlsync extended options

MirrorLogDirectory (mld) extended option

Function 

Specifies the location of old mirror log files so that they can be deleted.

Syntax 

dbmlsync -e mld= filename ...

Description 

This option makes it possible for dbmlsync to delete old mirror log files when either of the following two circumstances occur:

In a normal setup, the active mirror log and renamed mirror transaction logs are located in the same directory, and dbmlsync is run on the same machine as the remote database, so this option is not required and old mirror log files are automatically deleted.

Transaction logs in this directory will only be affected if the DELETE_OLD_LOGS database option is set to ON or DELAY.

This option has a short form and long form: you can use mld or MirrorLogDirectory.

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

See also 

DELETE_OLD_LOGS option [replication]

Example 

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

dbmlsync -e "mld=c:\tmp\file"

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

CREATE SYNCHRONIZATION SUBSCRIPTION
   TO sales_publication
   FOR ml_user1
   OPTION mld='c:\tmp\file';

Collection Contents Previous Next PDF