get stored procedure structure

S

St

Hello,

is it possible to get stored procedure from sql server ? For exemple, I am
using
GetSchemaTable to get schema from a table, but is it possible with a stored
procedure ?

Thanks

St
 
P

Patrice

AFAIK no "built-in ADO.NET support" but you can always select directly from
the Information_Schema.Routines view or call any sp you need (such as
sp_helptext to get the text of a SP).

Patrice
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top