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 All,

when ever my sqlanywhere client db crashes , i dont get any crashdump or any log file in powerbuilder 10.0 application.

is there a way to enable the logs and crash dump.badly i need for help . unable to figure out how and why my application crashes. the crashes started happening after migrating application to WINDOWS 2008 R2. it was not happening in windows XP machine.. thanks in advance

asked 23 Jun '15, 09:06

muruganand's gravatar image

muruganand
44333
accept rate: 0%

edited 24 Jun '15, 00:30

What version of SQL Anywhere are you using?

Try adding the -o filespec.txt option to the command line that starts the database server; e.g., dbsrvXX.exe -o filespec.txt database.db

Also, ODBC trace files may be available in the ODBC Administrator setup, and thwere may be a trace file available from the PowerBuilder runtime (my memory is feeble).

(17 Jul '15, 08:25) Breck Carter

Dbeng50.exe is very old and no longer supported... and AFAIK it never produced a crash dump file.

Before migrating to Windows 2008 R2, did you check to see if your software is supported on it? Because SQL Anywhere 5 is not.

permanent link

answered 23 Jun '15, 15:31

Breck%20Carter's gravatar image

Breck Carter
32.5k5417261050
accept rate: 20%

...and AFAIK some folks have reported that SQL Anywhere 5 does not run stable on Windows 7 and above, cf. that FAQ search...

(24 Jun '15, 03:41) Volker Barth
Replies hidden

I no longer see why "Dbeng50.exe" can be assumed... did something get deleted?

The tag says "sa-5" but that could be a speling misteak :)

(17 Jul '15, 08:20) Breck Carter

HERE IS WHAT TO DO...

Steps to fix the transaction log

  1. Stop the service from Sybase Central.

  2. Move the existing log file that is tied to the database to a different location.

  3. Launch a command prompt and navigate to where your SQL Anywhere databases are stored.

For example: F:\Temp>

Type > dbeng50.exe software.db You may need to type in the full path to your dbeng50 executable if sqlany50 is not in your system path. For example: "C:\Program Files\sqlany50\win32\dbeng50.exe" dbfilename.db

Note: This step will start the database server without the transaction log for the first time.

  1. Type > dbeng50.exe -f dbfilename.db

Note: This step will fix the database server.

  1. Type > dbeng50.exe dbfilename.db

Note: This step will connect to the database and write a new transaction log.

  1. Click the Shutdown button to stop the server.

  2. Launch Sybase Central and restart the service.

Note: You can adjust the file so that it no longer uses a transaction log.

  1. Verify that all information is valid for the master_dbs table.
permanent link

answered 17 Jul '15, 03:58

Hanson's gravatar image

Hanson
25
accept rate: 0%

1

The OP was asking about diagnostic log files (like a crash dump or dbsrv50 -o text file), NOT the database transaction log file.

> You can adjust the file so that it no longer uses a transaction log.

That is very dangerous advice, and should always be accompanied by warnings about unintended consequences.

For example, the Version 5.5 Help says this about dbinit -n: "The transaction log is required for data replication and provides extra security for database information in case of media failure or system failure."

The Version 16 Help says this, and the point about performance is probably true for Version 5.5 as well: "Creating a database without a transaction log saves disk space, but can result in poorer performance because each commit causes a checkpoint. Also, if your database becomes corrupted and you are not running with a transaction log, data is not recoverable. The transaction log is required for data replication and provides extra security for database information during a media or system failure."

(17 Jul '15, 08:05) Breck Carter
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:

×51
×39
×36
×17

question asked: 23 Jun '15, 09:06

question was seen: 5,323 times

last updated: 17 Jul '15, 08:25