SSE
SSE

Reputation: 445

How to supress results set in Sybase?

I Have to suppress result set from a stored proc Is there any set command to suppress the result set in sybase stored proc?

I have a stored proc,i want to use that in my front end and script with out duplicating

Thanks

Upvotes: 0

Views: 713

Answers (1)

kolchanov
kolchanov

Reputation: 2108

Try fmtonly option.

set fmtonly on

go

exec stored_proc(...)

go

Upvotes: 1

Related Questions