astra14i@hotmail.com wrote on Mon, 30 Jul 2007 15:25:38 -0700:
> Hi there,
> I'm quit newby to this, so i'd like to have some help please.
[quoted text clipped - 9 lines]
> What shall i do in order to have success?
> Thanks in advance.
Maybe it's because text is a reserved keyword, as is log. Try this:
UPDATE dbo.[log]
SET [text] = 'lot1' + [text] + 'lot2'
If it gives the same result then how about posting some DDL. If [text] is a
text column, try changing it to a varchar(max) - a text column will probably
need to use the UPDATETEXT statement, but it's been a long time since I've
used it.
Dan