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
Try fmtonly option.
set fmtonly on
go
exec stored_proc(...)
go
精彩评论