Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to debug stored procedures in Sybase ASE?

Is there a good tool from either Sybase or elsewhere that will enable me to debug stored procedures in Sybase ASE? I need to be able to set breakpoints & watchpoints.

Previously, in Sybase ASA (not ASE), I used Sybase Central to do this. There is a plugin for ASE, but I doubt it will let me debug procedures.

like image 591
Mike Thompson Avatar asked Feb 06 '09 00:02

Mike Thompson


1 Answers

Sybase ASE comes with a command line debugger called sqldbgr. Not the most user friendly option, but it does work. You can find documentation for this in the Utility Guide.

Alternatively Embarcadero produces a SQL debugger.

like image 161
Allethrin Avatar answered Sep 23 '22 11:09

Allethrin