March 21, 2006 at 1:15 pm
Hi, I'm trying to write a query to select all user stored procedures in a db (and exclude system stored procedures). The follow query will list all stored procedures (user and system). How can I exclude the system stored procedures?
select * from sysobjects where type='P'
Thanks.
March 22, 2006 at 5:34 am
Yes, that's it. I overlooked that column. Thanks and sorry for such a basic question!
March 23, 2006 at 7:30 am
Just a note - standardized naming conventions also help!
**ASCII stupid question, get a stupid ANSI !!!**
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply