November 14, 2002 at 11:04 am
Send them to what address?
November 14, 2002 at 2:13 pm
Unless they've changed the address, suggestions for additions and improvements can be sent to:
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to Finish Guide to SQL Server Performance Monitoring
http://www.netimpress.com/shop/product.asp?ProductID=NI-SQL1
K. Brian Kelley
@kbriankelley
November 19, 2002 at 2:42 am
My initials are sp.
Sean P
quote:
I use my initials on stored procedures and require that anyone else who creates stored procedures use their initials. It's an easy way to keep track of who made what.-Bill
November 19, 2002 at 5:06 am
quote:
My initials are sp.Sean P
quote:
I use my initials on stored procedures and require that anyone else who creates stored procedures use their initials. It's an easy way to keep track of who made what.-Bill
As long as you use spXXXX and not sp_XXXX there will be no issue for you, just when first three are sp_. But I see what you mean.
November 19, 2002 at 6:36 am
There is also always the option of going to three letters with something like a z or q used if someone doesn't have a middle name.
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to Finish Guide to SQL Server Performance Monitoring
http://www.netimpress.com/shop/product.asp?ProductID=NI-SQL1
K. Brian Kelley
@kbriankelley
November 20, 2002 at 10:07 am
Personally, we've standardised on the Company Initials then SP.
Hence ACLSP - we can instantly determine our SPs from other vendors SPs in one database if third party tools are used.
November 20, 2002 at 5:46 pm
The only problem when I thinking about it, with using initials is it makes it harder to code as you have to go look up the SP name. What do you do if that person leaves and then someone else alters it, of course they had best not change the name of the SP. I prefer a standard that makes simple sense without the need to go back to look it up.
Ex.
I create a table tbl_PagingMsgs
Then when I create my SP i use
ip_UPagingMsgs -- For Updates
ip_IPagingMsgs -- For Inserts
ip_DPagingMsgs -- For Deletes
ip_SPagingMsgs -- For Selects
And of course I document in the code itself the information on when created, modified by whom and what each does even thou most names are desciptive enough on that part (There was a thread on this awhile back that if anyone is interested in they should search for it or ask and maybe I can find).
This way names are generic, understandable and have no conventions that make looking them up always neccessary. Some folks may be lucky enough to not to have to make code changes later to client or server side stuff but my environment changes too often for that to be a luxury.
(Just my thoughts on SP with initials of developer)
December 5, 2002 at 4:02 am
Thanks all
I think I've got enough info to argue for a new prefix. Just a small jobb, a week or two 🙁
December 5, 2002 at 7:22 am
Last note:
We use a prefix usp for user stored proc and SUFFIX identifiers. The IDs are only for dev and do not make it to the production system. Internal comments show who made what changes and when. Since SPs are compiled, there is no penalty for more ignored bytes.
January 3, 2003 at 8:38 pm
Does anyone have an idea how much of a performance hit this causes? Also, if the owner of the sp_ is included in the exec will I still get a Cache Miss? Thanks!
Tim
January 5, 2003 at 6:11 pm
quote:
Does anyone have an idea how much of a performance hit this causes? Also, if the owner of the sp_ is included in the exec will I still get a Cache Miss? Thanks!Tim
Not sure how bad the hit is, but if run often of course the hit adds up. And specifying the owner does not help.
January 22, 2008 at 3:19 am
Interesting debate. I have heard this discussion many times over the years. Let me just make this statement: The amount of time it costs to introduce/change a namestandard (sp_ to usp_ or whatever) is big. However I can not recall a single case that I have heard of where this penalty hit actually was a problem. I am currently working in a system with sp_ as naming convention, no problems. (One of the larger banks in the country)
All to often programmers tend to spend many hours on stuff that never pays off: "Lets just do this thing and then in the future if this other thing happens we can save a lot of time". Well in the future the other thing never happens! Cleverly designed multi-tier solutions get scratched in favour of SOA for example...
Here is my 0.02$: Call the darn procedure whatever you like. I you have 2 applications that reside in the same database (Customer frontend and Manager backend) call the procedures fe_ and be_ for easy grouping.
Best wishes!
January 24, 2008 at 7:03 am
The other problem with the sp_ (don't know if it was mentioned, I didn't read the entire thread) is the possibility of overlap with a system proc (current or future)
If your proc is prefixed sp_ and has the same name as a system proc that's in the master/resource db, then your proc won't get executed. The call will resolve to the system proc and not to yours.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
January 24, 2008 at 9:27 am
I don't think it's a big hit, but I agree with Gail's issue with naming conflicts.
I'd avoid it, script out the procs and make the changes, You could even make the changes inside procs with an easy search replace. I have worked with vendors that did things like ip_myproc and it made it easy to see their procs v mine.
January 30, 2008 at 7:18 am
WTF, this is like kindergarten!
Gail, when you have found one (1!) application in the whole universe that uses the same name on a system stored procedure as on a user stored procedure, then you can call me. Until then don't waste my time with extremely special scenarios that u need to be on crack to fully appreciate.
Nah, this kind of academic discussion don't do it for me, I'm off!
/Goran
p.s Steve thanks for the tip on search and replace, most helpful! d.s
Viewing 15 posts - 16 through 30 (of 38 total)
You must be logged in to reply to this topic. Login to reply