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'
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'