Applies to
ApexSQL Log
Summary
This article provides information about exporting options available in ApexSQL Log.
The information exported are operation details and transaction information, as shown in appropriate panes for each grid row.
In case of DDL operation, the Operation details pane shows:
In case of INSERT and DELETE operations, the Operation details pane shows:
In case of UPDATE operations, the Operation details pane shows:

The Transaction information pane shows:

ApexSQL Log provides several export formats accessible via the Export option in the Home tab in the menu.

Additionally, all of the exporting options are available in the Export results and Create Before-after report options, in the last step of the session wizard.
The Export to SQL script option generates a T-SQL script which inserts the transaction information into the APEXSQL_LOG_OPERATION table and the operation details in the APEXSQL_LOG_OPERATION_DETAIL table. The script can be executed against any database you decide to use as a repository. The script creates required tables if they do not exist in the database.
The Export to SQL bulk option generates a T-SQL script that utilizes the bulk INSERT method for importing data. This method processes large volumes of information more quickly than the standard INSERT method, but the result is the same as with the previously described SQL script option.
The Export to HTML option generates an HTML report containing all transaction information and operation details.
The Export to XML option creates a report file with transaction information and operation details in XML format.
CSV files generated by ApexSQL Log have the following format:
The Export to database option is similar to the Export to SQL script option, and exports data directly to the chosen database into the APEXSQL_LOG_OPERATION table and the operation details in the APEXSQL_LOG_OPERATION_DETAIL table which are automatically created if they do not exist in the database already.
The Before-after report can be created in any of the previously described formats. The result of this action is a report and appropriate information on values before the change has occurred and after it was committed.