show/hide this revision's text 2 added 16 characters in body

If you are using SQL Server 2005 or greater, depending on the size of the data in the Notes field, you may want to consider casting to nvarchar(max) as instead of casting to a specific length which could result in string truncation.

Select Cast(notes as nvarchar(max)) + 'SomeText' From NotesTable a
show/hide this revision's text 1

If you are using SQL Server 2005 or greater, depending on the size of the data in the Notes field, you may want to consider casting to nvarchar(max) as casting to a specific length could result in string truncation.

Select Cast(notes as nvarchar(max)) + 'SomeText' From NotesTable a