Jan 22, 2002 #1 shultz Programmer Joined Oct 28, 2001 Messages 42 Location HK How can I get the length of a value stored in a field which of type "ntext". Because If I give select len(csrDescription) from tblImport the query analyzer gives me an error message. If there any other way round to find the length of the string.
How can I get the length of a value stored in a field which of type "ntext". Because If I give select len(csrDescription) from tblImport the query analyzer gives me an error message. If there any other way round to find the length of the string.
Jan 23, 2002 #2 RickCole Technical User Joined May 9, 2001 Messages 349 Location GB Try: select datalength(csrDescription) from tblImport Rick. Upvote 0 Downvote