自动摘要
正在生成中……
以SQL命令的方式获取SQLSERVER的存储过程,以MMS » dbo
数据库为例
USE MMS.dbo
select * from sys.objects where type = 'P';
- 查找单条存储过程名称 如:
usp_WebGetSubscribermem
select * from sys.objects where type_desc like '%pro%' and name like 'usp_WebGetSubscribermem%';
sp_helptext 'usp_WebGetSubscribermem'