Mar 6, 2003 #1 pokermat Programmer Jan 17, 2002 44 GB Hi all I need to display a list of stored procedures in a sql server db. I am using Data Environment and when you insert an SP you get a list of all SPs for that connection - that is the list I am after in code. Any ideas? Thanks. VB6 - XP Pro.
Hi all I need to display a list of stored procedures in a sql server db. I am using Data Environment and when you insert an SP you get a list of all SPs for that connection - that is the list I am after in code. Any ideas? Thanks. VB6 - XP Pro.
Mar 6, 2003 #2 MarkSweetland MIS Aug 30, 2000 1,177 US An xtype of "P" returns stored procedures, "V" returns views... select name from sysobjects where xtype = 'P' Mark Upvote 0 Downvote
An xtype of "P" returns stored procedures, "V" returns views... select name from sysobjects where xtype = 'P' Mark
Mar 6, 2003 Thread starter #3 pokermat Programmer Jan 17, 2002 44 GB Spot on Mark - thanks very much. Upvote 0 Downvote