Hi, I'm calling a Sybase Stored Proc X that returns data that is used by a servlet.
Within Stored Proc X, Stored Proc get_business_day is called in the following manner:
exec get_business_day @CBDate, -1, @prevBusDay output
So, the result of calling this (in DBArtisan) is:
6/25/2010 12:00:00.000 AM
1 row(s) affected.
The issue is that I do not need this above row to be outputted when executing X, as the output I get (in DBArtisan) is:
6/25/2010 12:00:00.000 AM
-2817773441.669999
This will obviously affect the results obtained by the servlet as it expects only the value -2817773441.669999.
Is there any way to suppress the output of get_business_day appearing when calling X?
Thx Agnyata