Recovering uncommitted operations

When recovering from media failure on the database file, the transaction log is intact. Recovery reapplies all committed transactions to the database. In some circumstances, you may want to find information about transactions that were incomplete at the time of the failure.

The Translate Log File Wizard helps you translate a log file into a .sql file from Sybase Central. You can also use the dbtran utility to translate a log file into a .sql file.

Note

The transaction log may or may not contain changes right up to the point where a failure occurred. It does contain any changes made before the end of the most recently committed transaction that made changes to the database.

 Recover uncommitted operations from a transaction log (Sybase Central)
  1. Click Tools » SQL Anywhere 12 » Translate Log File.

  2. Follow the instructions in the wizard.

  3. Edit the translated log (SQL script file) in a text editor and identify the instructions you need.

 Recover uncommitted operations from a transaction log (command line)
  1. Run dbtran to convert the transaction log into a SQL script file, using the -a option to include uncommitted transactions. For example, the following command uses dbtran to convert a transaction log:

    dbtran -a sample.log changes.sql
  2. Edit the translated log (SQL script file) in a text editor and identify the instructions you need.

    For more information about the Log Translation utility, see Log Translation utility (dbtran).

 See also