I have received the email from Grace on Tuesday, February 01, 2005 4:07 PM. Wow! She was sharing some interesting things related to SQL.
Thank you so much, Grace!
Hi Micheal,
Do you know that ntext data type can’t do concatenation. To overcome this problem, we can use UPDATETEXT.
The following are the example of using UPDATETEXT.
DECLARE @ptrval binary(16) Declare @strComments nvarchar(4000) SET @strComments = 'comments' SELECT @ptrval = TEXTPTR(rd.Comment) FROM vyRequisitionDetails rd WHERE rd.RequisitionID = 'REQPhyuHT02012005-Delhi' UPDATETEXT vyRequisitionDetails.Comment @ptrval NULL 0 @strComments
Grace
SQL 2k Tips : UPDATETEXT

here i have aproblem regarding ntext datatype.
i have a ntext feild in which i have to insert a html table format.
how can i use updatetext
Link | April 25th, 2008 at 8:55 am