Please be aware that the content in SAP SQL Anywhere Forum will be migrated to the SAP Community in June and this forum will be retired.

Hi,

i want to extract any change made to SA into a messaging system. Is there any (java) library that allows me to read the binary transaction file. The SQL file I can generate from the transaction file doesnt help me much, as I would need to parse it to extract the information. I am looking for a more machine readable format such as CSV or XML.

  1. Any tool/library to read the binary file
  2. Any tool/library to translate transaction log into format other then SQL ?

Thanks a lot Frank

asked 14 Oct '16, 09:20

flangel's gravatar image

flangel
26335
accept rate: 0%


I am looking for a more machine readable format such as CSV or XML

So what would be a "machine readable format" for SQL Anywhere transactions - other than the original log file itself?

FWIW, there's the C-based DBTools API with the DBTranslateLog() function, which should be callable from a JNI interface or the like (I'm guessing, it's not my area of expertise)... - this would allow to grab the contents in text form (primarily as SQL Statements and the like - note, the DBTRAN utility does use that API itself) and to format it as desired...

permanent link

answered 14 Oct '16, 09:36

Volker%20Barth's gravatar image

Volker Barth
40.2k361550822
accept rate: 34%

edited 14 Oct '16, 09:38

I meant Easily machine readable. The DBTranslateLog is translating to SQL, what i need is ability to read the content directly, so instead of going log -dbtran-> SQL -parser-> CSV i like to use an API to translate from log file into CSV (log --Parser--> CSV)

(14 Oct '16, 10:08) flangel
Replies hidden

what i need is ability to read the content directly

So what exactly is the contents you are looking for - the TL contains all DDL/DML/DCL operations, and these are basically done via SQL statements, so what are you expecting other than SQL statements?

(14 Oct '16, 17:44) Volker Barth

There is no Java tool that can read the transaction log. The only tool (library) that I know of that exists is written in C/C++ and it is dbtran (which loads dbtools library). FWIW: the same source code is compiled into the database server as well.

So the best that you can do would be to use dbtran to convert the transaction log to a text file and then write a tool (in whatever language you want) that would convert the file into a CSV (or whatever format you desire).

permanent link

answered 14 Oct '16, 10:22

Mark%20Culp's gravatar image

Mark Culp
24.9k10141297
accept rate: 41%

Consider a different approach: Use triggers to build your own audit trail facility that is designed to meet your needs, rather that struggle with parsing the hugely-complex transaction log.

Tip: Triggering an Audit Trail

Revisited: Triggering an Audit Trail

ALTER TABLE and the Audit Trail

Reporting and the Audit Trail

permanent link

answered 14 Oct '16, 17:08

Breck%20Carter's gravatar image

Breck Carter
32.5k5417261050
accept rate: 20%

Breck, thanks a lot for your answer. Might be a good alternative to consider.

(19 Oct '16, 06:22) flangel
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×59
×48

question asked: 14 Oct '16, 09:20

question was seen: 2,636 times

last updated: 19 Oct '16, 06:22