Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)

  • RE: Proper Storage and Handling of Personal Names

    roger.plowman (8/4/2016)


    Mononymics are fairly straightforward as far as I'm concerned.

    The mononymic would go in the given/first name and "N/A" would go in the family name.

    Also, nulls are abominations, since...

  • RE: Proper Storage and Handling of Personal Names

    Stephanie Giovannini (8/4/2016)


    I would settle for having my last name properly spelled. There's some low-hanging fruit.

    đŸ˜€

  • RE: Proper Storage and Handling of Personal Names

    ScottPletcher (8/4/2016)


    You certainly don't want to just store the entire name in one long, indistinguishable string. Trying to accurately parse that out later is virtually impossible.

    If there's a need...

  • RE: Proper Storage and Handling of Personal Names

    Tom Gillies (8/4/2016)


    That's definitely an interesting and useful suggestion. Tung has pointed out a real problem. The difficulty with dealing with it in the abstract is that different solutions work...

  • RE: Proper Storage and Handling of Personal Names

    Ernie Schlangen (8/4/2016)


    Allow me to propose an alternative. One of the primary reasons Western databases store names in multiple fields (given_name, surname, title, etc.) is to allow for the...

  • RE: Proper Storage and Handling of Personal Names

    robert.sterbal 56890 (8/4/2016)


    I would not want to type the column prefix column names you suggested.

    For an article thorough about a lot of things, the assumption that you would name columns...

  • RE: Proper Storage and Handling of Personal Names

    szeitzp (8/4/2016)


    1. The full_name column may not a practical one. It is brings more problem than profit, if you think about the possible sequences of the first_name and last_name it...

  • RE: Proper Storage and Handling of Personal Names

    Tom Gillies (8/4/2016)


    Thank you for the article Tung. Are you one of the many "one named" people you refer to? đŸ˜‰

    Tom, yes indeed, my name is a mononym. I still...

  • RE: Proper Storage and Handling of Personal Names

    BTW, that last INSERT should be:

    INSERT INTO demo.Customers_5(

    cst_full_name

    , cst_full_name_native_language

    , cst_short_name

    , cst_short_name_native_language

    )

    VALUES ('Tyrion Lannister',N'Tyrion Lannister','Tyrion',N'Tyrion')

    , ('Lee Jun-fan',N'???','Bruce',N'??')

    , ('Sinéad O''Connor',N'Sinéad O''Connor','Sinéad',N'Sinéad')

    , ('Cher',N'Cher','Cher',N'Cher')

    , ('Nebuchadnezzar',N'????????','Nebuchadnezzar',N'????????')

    , ('Gordon Matthew Thomas Sumner',N'Gordon Matthew Thomas...

  • RE: T-SQL formatting tool

    Have you already tried RedGate's SQL Prompt?

Viewing 10 posts - 1 through 10 (of 10 total)