1. 查询存储过程列表
select * from dbo.sysobjects where OBJECTPROPERTY(id, N'IsProcedure') = 1 and type= 'P' and name like 'sp%' order by name asc
1. 查询存储过程列表
select * from dbo.sysobjects where OBJECTPROPERTY(id, N'IsProcedure') = 1 and type= 'P' and name like 'sp%' order by name asc
2426

被折叠的 条评论
为什么被折叠?