If you use an archive backup (typically to tape), you use the RESTORE statement to recover your data.
For more information about making archive backups, see Backing up a database directly to tape.
In Sybase Central, connect to the database as a DBA user.
From the Tools menu, choose SQL Anywhere 10 > Restore Database.
The Restore Database wizard appears.
Follow the instructions in the wizard.
Start a personal database server. Use a command such as the following, which starts a server named restore:
dbeng10 -n restore
Start Interactive SQL. On the Identification tab of the Connect dialog, enter a user ID of DBA and a password of sql. Leave all other fields on this tab blank.
Click the Database tab and enter a database name of utility_db. Leave all other fields on this tab blank.
Click OK to connect.
Execute the RESTORE statement, specifying the archive root. At this time, you can choose to restore an archived database to its original location (default), or to a different computer with different device names using the RENAME clause. See RESTORE DATABASE statement.
The following statement restores a database from a tape archive to the database file c:\newdb\newdb.db.
RESTORE DATABASE 'c:\\newdb\\newdb.db' FROM '\\\\.\\tape0';
The following statement restores a database from an archive backup in file c:\backup\archive.1 to the database file c:\newdb\newdb.db. The transaction log name and location are specified in the database.
RESTORE DATABASE 'c:\\newdb\\newdb.db' FROM 'c:\\backup\\archive';
For more information, see RESTORE DATABASE statement.