赞
踩
--1、查看所有存储过程与函数
1.1. 查看数据库的树结构,在可编程性------存储过程可查看所有的存储函数,再选中存储名,按图操作可看存储的内容。
1.2 也可通过命令查看
select * from sys.all_objects
select * from sys.procedures
exec sp_stored_procedures
这三种都可以,推荐sys.all_objects,比较完整,sys.procedures和sp_stored_procedures因为某些原因过滤掉了一些,造成信息不全。
--2、查看存储过程的内容
select text from syscomments where id=object_id('存储过程名称')
-- 或者用
sp_helptext 存储过程名称
--3、查看存储过程的参数情况
select '参数名称' = name,
'类型' = type_name(xusertype),
'长度' = length,
'参数顺序' = colid,
'排序方式' = collation
from syscolumns
where id=object_id('存储过程名称')
--4、查看所有存储过程内容
select b.name ,a.text from syscomments a,sysobjects b where object_id(b.name)=a.id and b.xtype in('P','TR')
--5、查看包含字符串内容的存储过程
select b.name ,a.text from syscomments a,sysobjects b
where
charindex('字符串内容',a.text)>0 and
object_id(b.name)=a.id and b.xtype in('P','TR')
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。