get stored procedure structure

  • Thread starter Thread starter St
  • Start date Start date
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
 
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
 
Back
Top