• you can use the 2nd option, Varchar(MAX) can be used like regular varchar(50). no need to use Mutator "Wite()". keep it simple.

    i would suggest that to avoid the null value in the column you can use the default at the table definition. like this

    CREATE TABLE #remarkT

    (ID int NOT NULL PRIMARY KEY,

    Remark varchar(max) Default(''));

    GO

    hope it helps