Hi All,
I have list of my databases from master.dbo.sysobjects and query to get list of stored proc names from a given database like
SELECT name
FROM sysobjects
WHERE
type ='P'
AND
name not like 'dt_%'
ORDER BY name
but unable to get all stored procs from All databases!!!
Is there a way? Even looping thru each database and creating temp table is also ok. My database is SQL server 2000.