Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Difference Between varchar and nvarchar datatype?

Answers were Sorted based on User's Feedback



Difference Between varchar and nvarchar datatype?..

Answer / muhammadrashidmughal

The difference in varchar and nvarchar datatypes is
simple. Nvarchar stores UNICODE data. If you have
requirements to store UNICODE or multilingual data,
nvarchar is your choice. Varchar stores ASCII data and
should be your data type of choice for normal use

Is This Answer Correct ?    37 Yes 7 No

Difference Between varchar and nvarchar datatype?..

Answer / p.pradeepa

Varchar2(s) is used to define a variable length character
of maximum size s.

Nvarchar2: Same as VARCHAR2 except that the column stores
values in the National CS ie you can store values in Bangla
if your National CS is BN8BSCII .If the National CS is of
fixed width CS (all characters are represented by a fixed
byte say 2 bytes for JA16EUCFIXED) then NVARCHAR2(30)
stores 30 Characters.

If the National CS is of variable width CS (some characters
are represented by 1 byte some by 2 bytes as in UTF8 ) then
NVARCHAR2(30) stores 30 bytes.
The maximum column size allowed is 4000 bytes.
Ex: CREATE TABLE tab1 (col1 NVARCHAR2(2000)); will create a
table with one NVARCHAR2 column of 2000 characters in
length (stored as 4000 bytes because each character takes
two bytes) using JA16EUCFIXED as the national character
set:

Is This Answer Correct ?    5 Yes 3 No

Difference Between varchar and nvarchar datatype?..

Answer / munnabhaibcs

nvarchar means Your National Language data(font)

Is This Answer Correct ?    6 Yes 15 No

Post New Answer

More SQL Server Interview Questions

What is system stored procedures?

0 Answers  


How to transfer an existing table from one schema to another schema in ms sql server?

0 Answers  


select top 5 * from emp order by newid() my question is , how this query get executed?

5 Answers  


Selet all the data from table where last name is n of employee

2 Answers  


What is stretch database in sql server?

0 Answers  


What is a view? is View updatable?

17 Answers   IBM, L&T,


What is Index Segmentation ?

1 Answers   TCS,


What are scalar functions?

0 Answers  


How many null values we can have in a unique key field in sql server?

0 Answers  


i have a table student like sname ----- ram ram ram raj raj raj i need the output like sname ----- ram raj ram raj ram raj

9 Answers   IBM,


Explain the concepts and capabilities of sql server?

0 Answers  


how to find nth highest salary

103 Answers   Cognizant, IBM, NexGen, Oracle,


Categories