select * from sys.sysobjects where type=‘p‘ //存储过程
select * from sys.sysobjects where type=‘v‘ //视图
sp_helptext procName //查看存储过程结构
sp_helptext vwName //查看视图结构
时间: 2024-12-28 01:49:40
select * from sys.sysobjects where type=‘p‘ //存储过程
select * from sys.sysobjects where type=‘v‘ //视图
sp_helptext procName //查看存储过程结构
sp_helptext vwName //查看视图结构