Wednesday, March 26, 2008

Data Types in SQL Server


(for more database related articles)


Explain Varchar and Nvarchar


VARCHAR and NVARCHAR data types are both character data types that are variable-length. Below is the summary of the differences between these 2 data types:


 































 



VARCHAR(n)



NVARCHAR(n)



Character Data Type



Non-Unicode Data



Unicode Data



Maximum Length



8,000



4,000



Character Size



1 byte



2 bytes



Storage Size



Actual Length (in bytes)



2 times Actual Length (in bytes)



 


We would use NVARCHAR data type for columns that store characters from more than one character set or when we will be using characters that require 2-byte characters, which are basically the Unicode characters such as the Japanese Kanji or Korean Hangul characters.


 


 Explain Varchar(MAX), Nvarchar(MAX) and Varbinary(MAX)


 MAX indicates that the maximum storage size is 2^31-1 bytes. The storage size is the actual length of data entered + 2 bytes. The data entered can be 0 characters in length.



We can also declare local variables of VARCHAR(MAX), NVARCHAR(MAX) and VARBINARY(MAX) data types. This is unlike the data types (TEXT, NTEXT and IMAGE). These enhanced data types are replacing because declaring local variables of TEXT, NTEXT and IMAGE data types is not allowed in the previous versions of SQL Server.



Explain XML Data type
We can create variables, parameters, and columns of the xml type. We can optionally associate a collection of XML schemas with a variable, parameter, or column of xml type and this type of xml instance is call typed and if we will not associate xml schemas with the XML Data Type than it is called untyped.

No comments:

Post a Comment