版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。 [url]http://chenxing.blog.51cto.com/240526/44626[/url]
1、利用系统表提取存储过程的参数列表
select a.name as parameter,b.name as type,a.length,a.xscale,a.isoutparam as parameter_output,
       case when b.scale is null then 0 else b.scale end as scale
  from syscolumns a left join systypes b   on a.xtype=b.xtype
 where a.id=(select id from sysobjects where name='IUD_CHTKD')--IUD_CHTKD是存储过程的名称

2、利用系统存储过程表提取存储过程的参数列表
SP_HELP 'IUD_CHTKD'--IUD_CHTKD是存储过程的名称