vote up 1 vote down star

What is the best way to append to a text field using t-sql in Sql Server 2005?

With a varchar I would do this.

update tablename set fieldname = fieldname + 'appended string'

But this doesn't work with a text field.

flag

80% accept rate
Off the top of my head I would say that should work. The issue is probably a conversion/casting issue. Try fieldname = fieldname + N'appended string' – Craig Jan 21 at 17:57
Unfortunately, that didn't work. I got 'The data types text and nvarchar are incompatible in the add operator.' Thanks though. – Paul D. Eden Jan 21 at 18:03

3 Answers

vote up 2 vote down check

Try this:

update 
  tablename
set
  fieldname = convert(nvarchar(max),fieldname) + 'appended string'
link|flag
Thanks Bravax, this was perfect! – Paul D. Eden Jan 21 at 18:16
Well, at least I knew it was some sort of conversion error. :) Thanks Bravax. – Craig Jan 21 at 18:27
vote up 1 vote down

in 2005 you should use varchar(max) or nvarchar(max) these columns will work with normal varchar functions. Text and ntext have been deprecated

link|flag
vote up 1 vote down

This should work (link)

link|flag
I wish there was an easier way, but thanks for the link. – Paul D. Eden Jan 21 at 18:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.