Does somebody know how to turn the console output on in Sybase. The usual statement like print 'Hello'
, is not working for me, it just says command executed successfully without printing the log statement.
Are you using Interactive SQL in sybase? Or are you invoking dbisqlc with -nogui option and passing it an SQL file for it to run?
The 'message' method is only for interactive mode.
I'm trying to figure this out as well, but as far as I can tell the console output doesn't seem to work. I tried using 'select' statement such as:
SELECT "This is my message";
And it seems to work, but is a little too hacky for my tastes.
Please let me know if this works/you figured something better out :)
~Will