Home
VB.NET/ASP.NET
Java
Linux
Windows
SQL Server
About us
Contact Us
Privacy
How to get a list of stored procedures in sql server
Thursday, 28 January 2010 22:17 |
To get a list of stored procedures in sql server you can use the following query
Select * from sysobjects where type = 'P' and category = 0
< Prev
Next >
Designed by
Graham Robinson Software
.