Query to list all stored procedures

后端 未结 23 1467
暖寄归人
暖寄归人 2020-11-28 17:18

What query can return the names of all the stored procedures in a SQL Server database

If the query could exclude system stored procedures, that would be even more he

23条回答
  •  孤城傲影
    2020-11-28 18:12

    select * from DatabaseName.INFORMATION_SCHEMA.ROUTINES where routine_type = 'PROCEDURE'
    
    select * from DatabaseName.INFORMATION_SCHEMA.ROUTINES where routine_type ='procedure' and left(ROUTINE_NAME,3) not in('sp_', 'xp_', 'ms_')
    
    
       SELECT name, type   FROM dbo.sysobjects
     WHERE (type = 'P')
    

提交回复
热议问题