RE: syntax to print list of SPs
From: Vyshnavi (Vyshnavi_at_discussions.microsoft.com)
Date: 12/09/04
- Next message: Kalen Delaney: "Re: Returning Record Identity"
- Previous message: oj: "Re: encryption error"
- In reply to: smk23: "syntax to print list of SPs"
- Next in thread: Natesh Kumar: "RE: syntax to print list of SPs"
- Reply: Natesh Kumar: "RE: syntax to print list of SPs"
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 8 Dec 2004 22:15:02 -0800
Hi
This query will give you the objects created by user.
select * from sysobjects where type = 'P' and OBJECTPROPERTY ( id,
'ISMSShipped') = 0
This query will give you the objects shipped by Microsoft during installation.
select * from sysobjects where type = 'P' and OBJECTPROPERTY ( id,
'ISMSShipped') = 1
Thanks
Vyshnavi
"smk23" wrote:
> Could someone give me the syntax for printing the list of stored procedures
> in a DB?
> Thanks a lot!!
>
> --
> sam
- Next message: Kalen Delaney: "Re: Returning Record Identity"
- Previous message: oj: "Re: encryption error"
- In reply to: smk23: "syntax to print list of SPs"
- Next in thread: Natesh Kumar: "RE: syntax to print list of SPs"
- Reply: Natesh Kumar: "RE: syntax to print list of SPs"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|