Each database has an associated transaction log file. The transaction log is used for database recovery. It is a record of transactions executed against a database.
The transaction log stores all executed data definition statements, and the user ID that executed them. It also stores all updates, deletes, and inserts and which user executed those statements. However, this is insufficient for some auditing purposes. By default, the transaction log does not contain the time of the event, just the order in which events occurred. It also contains neither failed events, nor select statements.
Auditing tracks of the activity performed on a database. When you use auditing, additional data is saved in the transaction log, including:
All login attempts (successful and failed), including the terminal ID.
Accurate timestamps of all events (to a resolution of milliseconds).
All permissions checks (successful and failed), including the object on which the permission was checked (if applicable).
All actions that require system privileges.
You cannot stop using a transaction log while auditing is enabled for a database. To turn off the transaction log, you must first turn off auditing.
Action auditing outside the database server
Configuring auditing (Sybase Central)
Configuring auditing (Interactive SQL)
Retrieving auditing information (Sybase Central)
Retrieving auditing information (dbtran utility)
Auditing examples
![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2014, SAP AG or an SAP affiliate company. - SAP Sybase SQL Anywhere 16.0 |