Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Saving Stored Procedures

Author  Topic 

jerryadair
Starting Member

1 Post

Posted - 2007-06-12 : 08:01:33
I am using SQL 2005 and when I create a new stored procedure it saves it in a folder called Projects, but it doesn't show up in the list of strored procedures. What folder are you supposed to save to?

madhivanan
Premature Yak Congratulator

22864 Posts

Posted - 2007-06-12 : 08:41:09
To know list of stored procedures, run this

Select name from sysobjects where xtype='p'

Madhivanan

Failing to plan is Planning to fail
Go to Top of Page
   

- Advertisement -