Tuesday, March 31, 2009
how to find the list of stored procedure in the database
Sql Server 2005
SELECT * FROM sys.procedures;
User Procedure
SELECT * from sys.objects where type='p' and is_ms_shipped=0 and [name] not like 'sp[_]%diagram%';
Friday, March 20, 2009
Friday, March 13, 2009
Thursday, March 12, 2009
Subscribe to:
Posts (Atom)