-ad iqsrv16 database option

Specifies the directory containing transaction log files to be applied to the database.

Syntax

iqsrv16 [ server-options ] database-file -ad log-directory ...

Applies to

All operating systems and database servers.

Remarks

When you include the -ad option, the specified directory is scanned for transaction log files associated with the database. Transaction log files with starting log offsets greater than or equal to the start log offset stored in the database file are applied, in log offset order. Once all the transaction log files have been applied, the database is stopped. You must also specify the -as option if you want the database to continue running once the transaction log files have been applied.

If the specified log directory uses a relative path, then this directory is read relative to the database-file directory.

The -ad database option must be specified after the database-file, and applies only to that database.

Example

The database server applies the log files in the backup directory to the mysample.db database and then stops the database once the log files have been applied.

iqsrv16 "c:\mysample.db" -ad "c:\backup"

The database server applies the log files in the backup directory to the mysample.db database and the database continues running once the log files have been applied.

iqsrv16 "c:\mysample.db" -ad "c:\backup" -as