Question

When I execute stored procedures using isql, they might give this info:

(return status = 0)

Is it possible to disable that info?

I already use SET NOCOUNT ON to disable some part but this is still presented.

Was it helpful?

Solution

You can use the following code:

set proc_return_status off

Be aware that you disable for all SPs in the current database, you should:

set proc_return_status on

afterwards.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top