0

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.

Danny Beckett
  • 20,529
  • 24
  • 107
  • 134
aF.
  • 64,980
  • 43
  • 135
  • 198

1 Answers1

3

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.

aF.
  • 64,980
  • 43
  • 135
  • 198