首页 > 数据库技术 > 详细

Sql Server 查看所有存储过程或视图的位置及内容

时间:2014-06-14 18:37:02      阅读:358      评论:0      收藏:0      [点我收藏+]
原文:Sql Server 查看所有存储过程或视图的位置及内容

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)
order by a.[name] asc

通过这个sql语句可以查到sql server中的视图和存储过程的内容及位置,然后再用where过滤得到,你想要的结果

Sql Server 查看所有存储过程或视图的位置及内容,布布扣,bubuko.com

Sql Server 查看所有存储过程或视图的位置及内容

原文:http://www.cnblogs.com/lonelyxmas/p/3787691.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!