首页 > 代码库 > sql中查看数据库中所有的存储过程

sql中查看数据库中所有的存储过程

<style>p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 9.5px Consolas } p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; font: 9.5px Consolas; color: #0433ff } p.p3 { margin: 0.0px 0.0px 0.0px 0.0px; font: 9.5px Consolas; min-height: 11.0px } p.p4 { margin: 0.0px 0.0px 0.0px 0.0px; font: 9.5px Consolas; color: #00f900 } span.s1 { color: #0433ff } span.s2 { color: #000000 } span.s3 { color: #929292 } span.s4 { color: #ff2600 }</style>
    use [DataBase_Name]
    go 

  SELECT * FROM sys.all_objects 
  WHERE ([type] = ‘P‘ OR [type] = ‘X‘ OR [type] = ‘PC‘) 
  ORDER BY [name]

  

sql中查看数据库中所有的存储过程