vote up 2 vote down star
1

How can I obtain all stored procedures and their code from SQL Server?

I need to show data that is similar to what SQL Server Management Studio shows, incl. allowing to browse through SP's with code, tables and indexes.

Any hints on how to get this information out of SQL Server? P.S., I'm using C#.

flag

68% accept rate

5 Answers

vote up 1 vote down check

SQL Server Management Objects (SMO) would be a good place to start. This article has code examples including listing Stored Procedures:

Getting started with SQL Server Management Objects (SMO)

link|flag
vote up 0 vote down

The use the the "sysobjects" catalog view is discouraged as of SQL Server 2005 - instead, you should start using the catalog views from the "sys" schema (or the INFORMATION_SCHEMA views, if database-portability is important to you) like this:

SELECT
    pr.name,
    m.definition,
    pr.type_desc,
    pr.create_date,
    pr.modify_date 
FROM 
    sys.procedures pr
INNER JOIN 
    sys.sql_modules m ON pr.object_id = m.object_id
WHERE 
    is_ms_shipped = 0
ORDER BY 
    pr.Name

Marc

link|flag
vote up 0 vote down

Others have pointed you in the right directions. It can also be helpful to know about the OBJECT_DEFINITION() function.

link|flag
vote up 0 vote down

Look at the Information_schema.procedures view.

link|flag
vote up 0 vote down
SELECT	sysobjects.name, syscomments.text 
FROM	sysobjects 
JOIN	syscomments 
	ON	sysobjects.id = syscomments.id
WHERE	xtype='P'
link|flag
The "sys.procedures" catalog view also includes elements of xtype=PC, RF (replication filters) and X (extended stored procs) in its listing – marc_s Oct 11 at 9:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.