up vote 2 down vote favorite
1
share [g+] share [fb]

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#.

link|improve this question

65% accept rate
feedback

5 Answers

up vote 1 down vote accepted

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|improve this answer
feedback
SELECT	sysobjects.name, syscomments.text 
FROM	sysobjects 
JOIN	syscomments 
	ON	sysobjects.id = syscomments.id
WHERE	xtype='P'
link|improve this answer
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 '09 at 9:01
feedback

Look at the Information_schema.procedures view.

link|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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