vote up 80 vote down star
17

What is the longest name that you should expect to get as input to your program or database?

I don't want to truncate unusual names, but I also don't want people to paste a novel in my name field as this could result in security problems. Has anybody ever been bitten by setting this field size too short?

flag
1  
I always want to reply with funny responses and I would if I wasn't so afraid of overzealous down modders. – Sara Chipps Sep 24 '08 at 16:11
show 5 more comments

42 Answers

prev 1 2
vote up 1 vote down

I'd also go with 256 characters, because it's a nice round number. 256 is kind of my default "good starting point" field length.

link|flag
show 2 more comments
vote up 1 vote down

Looking at my VISA card (Danish) my full name (Thomas Angelbo Christensen) almost spans the entire card. That's 26 characters including spaces.

That's one form of restriction on name-length.

I always go with 256 characters for full names. Which I think is more than enough.

link|flag
show 4 more comments
vote up 1 vote down

Good question. I suppose a follow on question would be how to deal with someone called Mrs. x'; DROP TABLE users; --

link|flag
show 6 more comments
vote up 2 vote down

The longest name in an NFL stats db I have is Chris Fuamatu-Ma'afala. But that only contains players with offensive stats.

I don't know why I even remember that.

I read an article on the BBC a while back about Sri Lankan brothers with very long names, who did find that they had trouble with some database systems. Hang on ...

Hm, can't find it. But the full name of the cricketer generally known as "Chaminda Vaas" is Warnakulasuriya Patabendige Ushantha Joseph Chaminda Vaas. And it's not just Sri Lankans - there is an English cricketer named Ebony-Jewel Cora-Lee Camellia Rosamond Rainford-Brent ("EJCLRC Rainford-Brent" on the scorecard, even though that reverses two of her names she apparently prefers it).

In practice, unless you're doing government work anyone with an extremely long name will probably use a shortened version of it for practical purposes.

link|flag
show 3 more comments
vote up 1 vote down

"Pedro de Alcântara Francisco Antonio João Carlos Xavier de Paula Miguel Rafael Joaquim José Gonzaga Pascoal Cipriano Serafim de Bragança e Bourbom" was Peter I's complete name.

Anyway, Dynite answer is so much more funny. :-D

link|flag
vote up 0 vote down

I guess safe assumption is that a human rarely has longer than 256 characters long full name. 256 characters is roughly 3 lines, assuming you have 80 character-limit on each line.

Actually, for european names... they aren't often really long, perhaps even 64 characters would go and most people would be ok with it. If you want to make sure you could use 128 characters. (I'd be sure, since 128 characters are really nothing with todays memory standards.)

Unless you are writing a government database for mexicans (there you wouldn't limit the name lengths), I guess you could use 64 as the character limit for the name field.

To your knowledge, I don't believe anyone would have ever written a novel to their name field. It's not even useful anyway since they ought do that thousands of times to actually give a dent. It's somewhat equivalent to spamming though. Not anything I would care of, since often you don't allow links in the name fields.

link|flag
vote up 16 vote down

Intresting enough, just yesterday I was reading about a woman who lost her flight home because her name was too long to be accepted by the check-in systems (would not fit in the boarding pass, they say and also had non-ASCII characters in it).

The name is: Ulrika Örtegren-Kärjenmäki and you can read the full story online:

http://www.thesun.co.uk/sol/homepage/news/article1716800.ece

link|flag
vote up 25 vote down

This is a great question, because its the kind of annoying but important decision developers face every day.

I recommend picking a reasonable limit and sticking with it. People with bizarrely long names usually have a shorter version that they will use if forced to. I would judge that 128 characters should be enough for any reasonable full name, and 64 characters should be enough for any christian name, middle name, or surname. Just make sure you enforce the same limit in the input field, UI code, database interaction layer, etc.

One great way to get a handle on these kinds of situations is to see how other people have dealt with the problem. Fire up some other applications or web sites from respected companies and see what they have done. Chances are if a solution worked for Google, it will work for you.

These days you'll also need to consider the possibility of Unicode characters in the name. Depending on how your users interact with your application, they could easily introduce these using a non-US keyboard. So make sure you accept them or reject them with an appropriate error message.

link|flag
4  
Personally, I don't believe rejecting someone's name because they have non-ASCII characters is ever acceptable. Your application should cope with them. Period. – MatthieuF Sep 24 '08 at 19:57
1  
I'm inclined to agree with MathieuF - any application in this day and age should be able to handle Unicode. Even more so if it is a web based application of some sort. – Rob Sep 24 '08 at 20:19
4  
zomg. are you serious? i apologize for a modicum of cultural insensitivity, but christian name is a common synonym for first name in the english speaking world. don't belive me? (en.wikipedia.org/wiki/First_name) – PeterAllenWebb Nov 3 '08 at 15:07
show 6 more comments
vote up 6 vote down

I don't think there can ever be a correct answer to this as someone could be born tomorrow with the longest name in the world + 1. People with excessively long names are probably used to shortening them due to restrictions on size elsewhere in their lives, so I would go with your experience of the particular language/culture you're dealing with, add a bit more on top and hope you don't offend any edge cases by not giving them enough space.

link|flag
show 3 more comments
vote up 21 vote down

One project I worked on handled mortgage/legal documents. I recall someone being added to the system who had eight middle names and their full, legal name was 514 characters long. So don't be stingy if it's a business app :P

link|flag
1  
Or ... code legal apps proactively: if(person.name.length > 500){ courthouse.InitiateLegalNameChangeFiling.Run(person); record.name.save(sha1(person.name); record.person.comment.save(person.name);} – micahwittman Sep 24 '08 at 16:36
show 3 more comments
vote up 0 vote down

I've got friends with a long, hyphenated last name that regularly get bit by this. I'd say 30 chars each for firstname and lastname, or 50 chars if they're in one combined field.

Overkill is good though, and storage is cheap to free these days, so take the above as a minimum and multiply by your favorite overengineering factor.

this link has some interesting data on it.

link|flag
show 2 more comments
vote up 1 vote down

When I program I usually use 25 character string for the first name and 50 character string for the last name. Using those settings I have not yet run into any problem with it being too short.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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