Sorry if I haven't choose appropriate forum for this question.
I have MSSQL05 beta. I know how to list all stored procedures in selected database (everything is in localhost). I need to list parameter names and types for selected stored procedure(s).
How can I do that or anything that can return parameter names and types
It's windows application.

Get Stored Procedures parameter names and types...
Steve Culver - MSFT
Thanks for the reply. This is what I wanted.
MaryJones
INFORMATION_SCHEMA.Parameters
view.SELECT *
FROM INFORMATION_SCHEMA.Parameters
HTH, Jens Suessmeyer.
---
http://www.sqlserver2005.de
---