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.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.