devxlogo

Get All the Stored Procedure Names In One Shot

Get All the Stored Procedure Names In One Shot

The following query will list all the stored procedure names available in the current database:

SELECT     name AS spnameFROM         sysobjectsWHERE     (xtype = 'p') AND (name NOT LIKE 'dt%')ORDER BY name
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist