• If you want to pass an unicode value to a stored procedure, you first need to set the value to a variable. Then pass the variable to the stored procedure:

    declare @kat nvarchar(50)

    set @kat=N'M?nzild? qurum'

    exec insert11 @kat

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **