How to get the lists of System Stored Procedures in SQL Server?
Posted by Jugal Shah on December 16, 2010
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'
18.520469
73.856621
Like this:
Be the first to like this post.
This entry was posted on December 16, 2010 at 10:36 am and is filed under Database, SQL Server, SQL Server 2008, SQL Server 2008 R2.
Tagged: System Stored Procedure List. You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.