• Your initial insert statement is incorrect.

    "Assume you have a SQLServer2005 database and that the table "tb_User" contains the user 'Assis Marques'"

    You need to modify the initial insert to be this statement:

    INSERT INTO tb_User(Name)

    VALUES('Assis Marques');

    Cheers,

    Brian