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

Why isn't RAISERROR spelled RAISEERROR? Where is the second E? I could understand if it were some ancient keyword length constraint, but I wouldn't expect it to be a nine-character limit.

Is RAIS or RROR a technical word such that "raise-error" is just a mis-reading? Are its (immediate) origins in a different language?

I've searched Google but not finding much on the subject.

share|improve this question

3 Answers

up vote 5 down vote accepted

Interesting - I've honestly never even noticed that before.

I would suspect that it's an early oversight that was just never corrected, though I'm a little surprised that support wasn't later added for RAISEERROR, with the mis-spelling left alone for compatibility.

Update: Aparently, there's even some internal confusion about what it ought to be - Check out this connect request, though MSFT didn't respond to it.

share|improve this answer
2  
Funny that they closed it as "not reproducible". I just hit the "I can reproduce this" button on the Connect page. – Eric J. May 12 '10 at 17:30

why is there still a TIMESTAMP data type? support for old versions. Someone Sybase person long ago decided to make it RAISERROR and not RAISEERROR, when Microsoft made a deal with Sybase they continued the trend.

share|improve this answer
+1. I think you mean RAISEERROR and not RAISEEROR ;o) – Neil Knight May 12 '10 at 17:20
@Ardman, yeah fixed it, I typed it so many times as RAISERROR I couldn't do it as RAISEERROR! – KM. May 12 '10 at 17:23

I believe it's intentional in that it is actually easier to read RAISERROR vs RAISEERROR. (see also sp_helprotect for another example), especially when there's no distinction based on case.

This stuff goes way back into Sybase's history.

share|improve this answer

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.