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

Char

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

DECLARE @b char(10)
SET @b='abc'
select DATALENGTH(@b)
SELECT @b
SELECT CAST(@b as binary(10))

10
abc
0x61626320202020202020


The 202020… are a sequence of spaces. 20 is the hexadecimal representation of the space character.

Note: An interesting detail is that char can actually store non-ASCII data. In the previous example let us replace the second line with this one:

SET @b='abc'+char(1)+char(2)+char(3)

10
abc
0x61626301020320202020


The three bytes are there, although not visible when displayed.


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