sqlServer之快速查询存储过程、视图

Use 数据库名称
select * from sysobjects where xtype='p'

 

P是存储过程
V是视图
FN是function
U是Table

原文地址:https://www.cnblogs.com/LessIsMoreZ/p/8760324.html