首页 > 技术文章 > 快速查找sql server中的存储过程和视图

kejie 2016-10-10 09:57 原文

select a.name,a.[type],b.[definition] from sys.all_objects a,sys.sql_modules b 
where a.is_ms_shipped=0 and a.object_id = b.object_id and a.[type] in ('P','V','AF') where a.name='Storage Name or View Name '
order by a.[name] asc

如果找存储过程

sp_helptext 'spName'

  

 

推荐阅读