How to get the lists of System Stored Procedures in SQL Server?


Get the list of System Stored Procedure

SELECT * FROM SYS.ALL_OBJECTS WHERE type='P' and object_id < 0

You can get the list of CLR procedures using below query

SELECT NAME FROM SYS.ALL_OBJECTS WHERE type='PC'

Thanks for the comment, will get back to you soon... Jugal Shah