You can choose to maintain a transaction log mirror when you create a database. This option is available from the CREATE DATABASE statement, from Sybase Central, or from the dbinit utility.
For more information about why you may want to use a transaction log mirror, see Protecting against media failure on the transaction log.
To create a database that uses a transaction log mirror (Sybase Central)
From the Tools menu, choose SQL Anywhere 11 » Create Database.
Follow the instructions in the Create Database Wizard.
To create a database that uses a transaction log mirror (SQL)
Use the CREATE DATABASE statement, with the TRANSACTION LOG and MIRROR clauses. For example:
CREATE DATABASE 'c:\\mydb' TRANSACTION LOG ON mydb.log MIRROR 'd:\\mydb.mlg'; |
To create a database that uses a transaction log mirror (Command line)
Use the dbinit utility with the -m option. For example, the following command (which should be entered on one line) initializes a database named company.db, with a transaction log kept on a different device and a mirror on a third device.
dbinit -t d:\log-dir\company.log -m e:\mirr-dir\company.mlg c:\db-dir\company.db |
Send feedback about this page via email or DocCommentXchange | Copyright © 2008, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.0 |