Tagged Questions
A varchar or variable character field is a set of character data of indeterminate length.
79
votes
11answers
53k views
What is the difference between varchar and nvarchar?
Is it just that nvarchar supports multibyte characters? If that is the case, is there really any point, other than storage concerns, to using varchars?
69
votes
4answers
73k views
SQL Server Text type vs. varchar data type
I have variable length character data and want to store in SQL Server (2005) database. I want to learn some best practices about how to choose TEXT SQL type or choose VARCHAR SQL type, pros and cons ...
67
votes
12answers
34k views
varchar vs nvarchar performance
I'm working on a database for a small web app at my school using SQL Server 2005. I see a couple of schools of thought on the issue of varchar vs nvarchar:
Use varchar unless you deal with a lot of ...
40
votes
11answers
52k views
What is the difference between char, nchar, varchar, and nvarchar in MSSQL?
What does it mean by nvarchar?
What is the difference between char, nchar, varchar, and nvarchar in MSSQL?
36
votes
3answers
26k views
What is the string length of a Guid?
I want to create a varchar folumn in SQL should contain N'guid' while guid is a generated Guid by .net (Guid.NewGuid).
What is the length of the varchar I should expect from a Guid?
is it a static ...
33
votes
3answers
22k views
Using varchar(MAX) vs TEXT on SQL Server
I just read that the VARCHAR(MAX) datatype (which can store close to 2GB of char data) is the recommended replacement for the TEXT datatype in SQL Server 2005+.
If I want to search inside a column ...
31
votes
3answers
11k views
MySQL: Large VARCHAR vs. TEXT?
Apologies if this is a silly question, could use an opinion:
I've got a messages table in MySQL which records messages between users. Apart from the typical ids and message types (all integer types) ...
24
votes
3answers
17k views
23
votes
5answers
38k views
Difference between BYTE and CHAR in column datatypes
In Oracle, what is the difference between :
CREATE TABLE CLIENT
(
NAME VARCHAR2(11 BYTE),
ID_CLIENT NUMBER
)
and
CREATE TABLE CLIENT
(
NAME VARCHAR2(11 CHAR), -- or even VARCHAR2(11)
ID_CLIENT ...
19
votes
6answers
4k views
varchar(max) everywhere?
Is there any problem with making all your Sql Server 2008 string columns varchar(max). My allowable string sizes are managed by the application. The database should just persist what I give it. ...
18
votes
8answers
3k views
Is there a good reason I see VARCHAR(255) used so often (as opposed to another length)?
In multiple courses, books, and jobs, I have seen text fields defined as VARCHAR(255) as kind of the default for "shortish" text. Is there any good reason that a length of 255 is chosen so often, ...
17
votes
9answers
2k views
How long should SQL email fields be?
I recognize that an email address can basically be indefinitely long so any size I impose on my varchar email address field is going to be arbitrary. However, I was wondering what the "standard" is? ...
13
votes
2answers
5k views
What are the optimum varchar sizes for MySQL?
How does MySQL store a varchar field? Can I assume that the following pattern represents sensible storage sizes :
1,2,4,8,16,32,64,128,255 (max)
A clarification via example. Lets say I have a ...
10
votes
2answers
5k views
What is the difference between CHARACTER VARYING and VARCHAR in PostgreSQL?
John uses CHARACTER VARYING in the places where I use VARCHAR.
I am a beginner, while he is an expert.
This suggests me that there is something which I do not know.
What is the difference between ...
9
votes
6answers
1k views
Are there disadvantages to using VARCHAR(MAX) in a table?
Here is my predicament.
Basically, I need a column in a table to hold up an unknown length of characters. But I was curious if in Sql Server performance problems could arise using a VARCHAR(MAX) or ...
8
votes
2answers
1k views
Varchar(255) to Varchar(MAX)
Is it possible to change a column type in a SQL Server 2008 database from varchar(255) to varchar(MAX) without having to drop the table and recreate?
SQL Server Management Studio throws me an error ...
7
votes
3answers
137 views
Converting Varchar to NVarchar?
I know when converting from nvarchar to varchar, some data will be lost/changed.
However, are there any risks of data changing when converting a varchar data type to an nvarchar?
7
votes
1answer
160 views
At which point does MySQL start treating VARCHAR cols like TEXT cols?
I'm aware that since MySQL 5, VARCHAR can have a length of up to 65,000. VARCHAR is stored inline, which means faster retrievals, as opposed to TEXT, which is stored outside of the table. That said, ...
7
votes
3answers
5k views
PostgreSQL: Difference between text and varchar (character varying)
What's the difference between the text data type and the character varying (varchar) Data types?
According to the documentation,
If character varying is used without length specifier, the type ...
7
votes
3answers
273 views
Does anyone have considerable proof that CHAR is faster than VARCHAR?
Any benchmark, graph anything at all ? Its all academic and theoretical across the web.
Ok its not the first time that this question has been asked, they all say that using CHAR results in faster ...
7
votes
5answers
2k views
BLOB vs. VARCHAR for storing arrays in a MySQL table
I've got a design decision to make and am looking for some best practice advice. I have a java program which needs to store a large number (few hundred a day) of floating point arrays in a MySQL ...
7
votes
2answers
4k views
MySQL - TEXT vs CHAR and VARCHAR
Reading this question a doubt poped into my head:
char and varchar can store up to 255 chars
text can store up to 65k chars
char size in bytes is number of chars
varchar size in bytes is number of ...
7
votes
5answers
4k views
MySQL VARCHAR Lengths and UTF-8
In MySQL, if I create a new VARCHAR(32) field in a UTF-8 table does it means I can store 32 bytes of data in that field or 32 chars (multi-byte)?
7
votes
4answers
12k views
varchar(max) MS SQL Server 2000, problems?
I've inherited a asp.net website project that currently runs MS SQL 2000 as its backend.
I've been doing some databases changes on a local copy of the db using MS SQL Server 2005 Express. I've create ...
7
votes
5answers
950 views
varchar Fields - Is a Power of Two More Efficient?
Is it more efficient to use a varchar field sized as a power of two vs. another number? I'm thinking no, because for SQL Server the default is 50. However, I've heard (but never confirmed) that sizing ...
6
votes
2answers
96 views
Should VARCHAR columns be put at the end of table definitions in MySQL?
I've heard (from a colleague, who heard it from another developer) that VARCHAR columns should always be put at the end of a table definition in MySQL, because they are variable in length and could ...
6
votes
5answers
6k views
Is a VARCHAR(20000) valid in MySQL?
I’m in need of some clarification of the maximum length of a varchar field in MySQL.
I’ve always thought the max length was 255 (255 what? Characters I’ve assumed, but this might be a source of my ...
6
votes
6answers
2k views
What size to pick for a (n)varchar column?
In a slightly heated discussion on TDWTF a question arose about the size of varchar columns in a DB.
For example, take a field that contains the name of a person (just name, no surname). It's quite ...
6
votes
5answers
8k views
char vs varchar for performance in stock database
I'm using mySQL to set up a database of stock options. There are about 330,000 rows (each row is 1 option). I'm new to SQL so I'm trying to decide on the field types for things like option symbol ...
5
votes
1answer
94 views
MySQL/InnoDB Plugin: Will NULL values for VARCHAR fields still take up storage spaces?
I'm using InnoDB Plugin in the Barracuda file format with:
ROW_FORMAT=DYNAMIC
If I define a field as VARCHAR(255), and then insert a record that has a NULL value for that field, will that record ...
5
votes
1answer
179 views
Is there any point in using CHAR if you have a VARCHAR in the same table?
I just read the accepted answer of this question, which left me with this question.
Here's a quote from that answer:
"But since you tagged this question with MySQL, I'll mention a MySQL-specific ...
5
votes
8answers
982 views
Does VARCHAR size limit matter? [closed]
Possible Duplicate:
Importance of varchar length in MySQL table
When using VARCHAR (assuming this is the correct data type for a short string) does the size matter? If I set it to 20 ...
5
votes
6answers
410 views
Why does VARCHAR need length specification?
Why do we always need to specify VARCHAR(length) instead of just VARCHAR? It is dynamic anyway.
UPD: I'm puzzled specifically by the fact that it is mandatory (e.g. in MySQL).
5
votes
5answers
931 views
Is a varchar 2 more efficient than a varchar 255?
I'm using Django and setting my CharField(max_length=255), even though I only intend to use about 5 characters. Is this less efficient? I've read that it doesn't really matter with varchar but then ...
5
votes
4answers
2k views
For innodb table in MySQL, which is faster: varchar(255) or tinytext?
I am optimizing some innodb tables in MySQL, so I ran procedure analsye() to see what the recommendations were.
The results recommended tinytext instead of varchar(255) for all the fields that were ...
5
votes
4answers
4k views
Number VS Varchar(2) Primary Keys
I'm now to this point of my project that I need to design my database (Oracle).
Usually for the status and countries tables I don’t use a numeric primary key, for example
STATUS (max 6)
AC --> ...
5
votes
5answers
2k views
How much more inefficient are text (blobs) than varchar/nvarchar's?
We're doing a lot of large, but straightforward forms for a fairly big project (about 600 users using it throughout the day - that's big for me at least ;-) ).
The forms have a lot of question/answer ...
4
votes
1answer
44 views
What data is included when MySQL creates a temporary table?
I have been reading about VARCHAR fields being converted to CHAR fields whenever MySQL generates a temporary table.
If I have the following table...
Excess of 100K rows
A dozen VARCHAR columns set ...
4
votes
3answers
139 views
What is the maximum range of varchar in MySQL?
What is the maximum range of varchar in MySQL?
I am using the latest version of MySQL and in many sites it is being told that the size is 255. But when i am trying to give a higher size like 500 or ...
4
votes
2answers
889 views
MySQL varchar(2000) vs text?
I need to store on average a paragraph of text, which would be about ~800 characters in the database. In some rare cases it may go up to 2000-2500~ characters. I've read the manual and I know there ...
4
votes
3answers
687 views
PostgreSQL primary key length limit
What is the limit of the length of primary key column? I'm going to use varchar as primary key. I've found no info, how long it can be, since PostgreSQL does not require to specify varchar limit when ...
4
votes
2answers
443 views
Conversion failed when converting the varchar value to int
I'm getting an error with what should be a simple query to insert data. I've done searching, but for the life of me, I cant figure out whats happening. Here's my SQL:
IF OBJECT_ID('settings') IS NOT ...
4
votes
5answers
244 views
How can I make SQL Server return FALSE for comparing varchars with and without trailing spaces?
If I deliberately store trailing spaces in a VARCHAR column, how can I force SQL Server to see the data as mismatch?
SELECT 'foo' WHERE 'bar' = 'bar '
I have tried:
SELECT 'foo' WHERE ...
4
votes
4answers
4k views
Does index on Varchar make performance difference?
Does index on a varchar column make the query run slower?
I can make that be int. and I don't need to do the LIKE % comparison.
4
votes
6answers
156 views
Why are SQL fields lengths always (2^n)-1 unless less than 127?
A lot of Database schemas seem to follow the following standard:
(2^n)-1 for large fields:
varchar(511)
varchar(255)
varchar(127)
...then (2^n) for smaller ones
varchar(64)
varchar(32)
...
4
votes
3answers
258 views
VARCHARS: 2, 4, 8, 16, etc.? Or 1, 3, 7, 15, etc.?
I see VARCHAR(255) being used all the time instead of VARCHAR(256), but I also see VARCHAR(16) being used instead of VARCHAR(15). This seems inconsistent to me. If an extra byte is being used to store ...
4
votes
3answers
281 views
SQL 2008 Compression
I am an intern and was asked to do some research on SQL 2008 data compression. We want to store several parts of outlook emails in a table. The problem is that we want to store the entire email body ...
4
votes
3answers
2k views
Size of varchar columns
In sql server does it make a difference if I define a varchar column to be of length 32 or 128?
3
votes
0answers
43 views
SQL Server VARCHAR Column Width [migrated]
Searching around the web, I have found conflicting advice on whether there is a performance impact when specifying overly-wide VARCHAR columns, e.g. VARCHAR(255) when VARCHAR(30) will probably do.
I ...
3
votes
2answers
78 views
Migrating from sql server to Oracle varchar length issues
Im facing a strange issue trying to move from sql server to oracle.
in one of my tables i have column defined by NVARCHAR(255)
after reading a bit i understod that SQL server is counting characters ...