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.