Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Our database is about to reach 1000 stored procedures. Although we were wise and created a good scheme for naming the stored procedures, hunting for the stored procedure you need can be a bit frustrating as you scroll and scroll and scroll. If I know the exact name of the stored procedure I'm looking for, it would be great to identify it quickly and modify

For example, if I want to find p_Blah_Blah in the treeview and open it to modify it, is there a command to launch p_Blah_Blah in a new window for editing? Or perhaps a plugin that limits the view of stored procedures to what you are searching for? Anyone who wants to write a plugin? :)

share|improve this question

4 Answers

up vote 14 down vote accepted

You can filter the tree, right click on "Stored Procedures" choose "Filter" and "Filter Settings".

As a general rule here we use naming conventions to do with context, for example all user sprocs are named: sp_user_*

share|improve this answer
They're not likely to rename 1000 procedures, especially with a satisfactory existing convention. But +1 for the Filter advice. – Joel Coehoorn May 28 '09 at 16:53
1  
+1 for Filter - however, in SQL Server, all system SPs are prefixed with sp_. When any SP is called which begins sp_ the system tries to find it in the master database first before searching the current database. You are creating a performance hit with your naming convention. – Gary.Ray May 28 '09 at 16:56
This does the trick and works with our current naming conventions. Thanks! :) – proudgeekdad May 28 '09 at 17:05
1  
I actually meant usp_ but mistyped it seems, the point was putting context in the stored proc name. – Lloyd May 29 '09 at 9:15
1  
our naming conventions work a bit like this... gp_ = generated procedure mp_ = maintenance procedure rp_ = report procedure p_ = plain old procedure Filtering out the gp_ makes things a bit easy to navigate. – proudgeekdad May 29 '09 at 19:11
show 1 more comment

Check out the redgate tools here, they have a free search tool that makes this kind of stuff a breeze:

http://www.red-gate.com/products/sql-development/sql-search/

share|improve this answer

In Management Studio 2005 you can right click on the stored procedures folder (and other folders too) to set a filter, then you can type in all, or part, of the names that you are looking for.

If you just want to know details of parameters (or rows for a table etc.) then in a query window you can type the objects name, highlight it, and press alt-F1 to call sp_Help on the object.

share|improve this answer

EXEC sp_HelpText 'your procedure name'

then proceed to modifying it.

share|improve this answer
1  
This is a great feature, but not 100% what I was looking for. I will keep this one in the "bag-o-tricks" though. Thanks! – proudgeekdad May 28 '09 at 17:06
I was actually looking for exactly how to list the stored proc and ended up at this question..so upvote even though it's not specifically for the original question. – Jedidja Jul 12 '10 at 16:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.