Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ntext datatype

Status
Not open for further replies.

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.
 
Try:

select datalength(csrDescription) from tblImport

Rick.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top