Call now: (800) 766-1884  


 Home


SQL Server Tips
SQL Server Training

SQL Server Consulting
SQL Server Support


 

 

 

   
  SQL Server Tips by Gama and Naughter

Nchar

Nchar stores fixed length Unicode data. The data is padded with spaces on the right as this example shows:

DECLARE @b nchar(10)
SET @b='abc'
select DATALENGTH(@b), LEN(@b)
SELECT @b

20 3
abc


Each Unicode character takes two bytes and DATALENGTH returns the length in terms of bytes, therefore twenty. LEN returns the number of characters and it should be three because 'abc' is only three characters.

Note: For ASCII data types, LEN and DATALENGTH return the same value, unless the data has trailing spaces, which are not counted. This is an important detail that results in subtle bugs.


The above book excerpt is from:

Super SQL Server Systems
Turbocharge Database Performance with C++ External Procedures

ISBN: 0-9761573-2-2
Joseph Gama, P. J. Naughter

 http://www.rampant-books.com/book_2005_2_sql_server_external_procedures.htm  

 

image


 

 


 

 

 

 

Note: The pages on this site were created as a support and training reference for use by our staff of DBA consultants.  If you find it confusing, please exit this page.

Errata?  SQL Server technology is changing and we strive to update our SQL Server support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail: info@remote-dba.net and include the URL for the page.
 


Burleson Consulting
SQL Server database support

 

Copyright © 1996 -  2006 by Burleson Enterprises, Inc. All rights reserved.

Hit Counter