Perform a Partial Restore From a Range of Incremental Backups

Partially restore the STA database from a range of incremental backups. This restores the database from the last full dump and then applies just the incremental backups that fall within the start and end points specified.

  1. On the STA server, open a terminal session. Log in as the Oracle user.
  2. Stop all STA processes:
    $ STA stop all
    
  3. Restart the MySQL server:
    $ STA start mysql
    
  4. Extract the valid operations from the binary logs. For example:
    $ mysqlbinlog ––start–position=176 ––stop–position=6817916 /var/log/tbi/db/stadb–bin.000007 > ./recover.sql 
    Password:
    

    where:

    • --start-position is the first log entry you want to extract.

    • --stop-position is the last log entry you want to extract. In this example, entries 176 to 6817916 are extracted.

    • /var/log/tbi/db/stadb-bin.00007 is the binary log file you want to extract from.

    • ./recover.sql is the file you want to write the entries to.

  5. Apply the selected operations to the database. For example:
    $ mysql –u root –p –e 'source ./recover.sql'
    Password:
    

    where:

    • -u root specifies the STA database root username.

    • -p indicates to prompt for the user password.

    • -e indicates to execute the following MySQL statement and then quit the mysql command. The statement must be enclosed in quotes.

      • 'source ./recover.sql'—Applies the entries in the specified file to the database.

  6. Restart STA and all associated processes. See Restart the STA Application.

How to Determine Which Incremental Backups to Restore

Incremental backups (binary logs) are labeled with unique sequential numbers. Therefore, if you identify a corrupt entry you can restore all logs before the erroneous entry.

Log positions are labeled in the binary log as log_pos followed by a unique number. For example, after examining the contents of a binary log, you discover that an erroneous operation resulted in dropping several tables immediately following log entry #6817916. Therefore, you want to restore the database only up to the last good entry (#6817916), excluding the erroneous operation and all that follow.

You would want to restore the database from the full dump done the day before, and then replay the most recent binary log from its initial log entry number "176" through entry number "6817916".