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

link|improve this question

40% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Try fmtonly option.

set fmtonly on

go

exec stored_proc(...)

go

link|improve this answer
thanks but..still header is coming.. – SSE Jun 13 '11 at 11:32
There is also "set noexec on". – kolchanov Jun 14 '11 at 6:13
feedback

Your Answer

 
or
required, but never shown

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