Monday, April 8, 2013

How To View The Definition Of A Stored Procedure In Sql


To View The Definition Of A Stored Procedure In Transact Sql Using Query Editor


USE DatabaseName;
GO
EXEC sp_helptext N'DatabaseName.dbo.ProcedureName';

No comments:

Post a Comment