SQL DBA Chronicles
Help, Hints and Tips learnt along the way as a SQL DBA
Wednesday, 11 January 2012
SQL Server 2005 - List all stored procedures in a database.
SQL Server 2005
Run the following script on SQL Server 2005 to retrieve all stored procedure in a database.
USE
AdventureWorks
GO
SELECT
*
FROM
sys.procedures
;
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)