If you are performing a backup that renames or deletes the transaction log on a database created with version 8.0 or later of Adaptive Server Anywhere, incomplete transactions are carried forward to the new transaction log.
If you are performing a backup that renames or deletes the transaction log on a database created with version 7.x or earlier of Adaptive Server Anywhere, however, and if there are outstanding transactions, the backup must wait until those transactions are complete before it can complete.
You can use a system procedure to determine which user has outstanding transactions. If there are not too many connections, you can also use the SQL Anywhere Console utility to determine which connection has outstanding connections.
Connect to the database from Interactive SQL or another application that can call stored procedures.
Execute the sa_conn_info system procedure:
CALL sa_conn_info
Inspect the UncommitOps column to see which connection has uncommitted operations.
Connect to the database from the SQL Anywhere Console utility.
For example, the following command connects to the default database using user ID DBA and password sql:
dbconsole -c "UID=DBA;PWD=sql"
Double-click each connection, and inspect the Uncommitted Ops entry to see which users have uncommitted operations. If necessary, you can disconnect the user to enable the backup to finish.