首页 > 数据库 > SQL Server > 正文

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

2024-08-31 00:55:38
字体:
来源:转载
供稿:网友
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过滤得到,你想要的结果


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表