Showing posts with label System Stored Procedure List. Show all posts
Showing posts with label System Stored Procedure List. Show all posts

Thursday, December 16, 2010

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'