Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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?
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 ...
33
votes
6answers
6k views

nvarchar(max) vs NText

What are the advantages and disadvantages of using the nvarchar(max) vs. NText data types in SQL Server? I don't need backward compatibility, so it is fine that nvarchar(max) isn't supported in older ...
24
votes
13answers
5k views

Is VARCHAR like totally 1990s?

VARCHAR does not store Unicode characters. NVARCHAR does store Unicode characters. Today's applications should always be Unicode compatible. NVARCHAR takes twice the amount of space to store it. ...
11
votes
3answers
1k views

What's the SQL national character (NCHAR) datatype really for?

As well as CHAR (CHARACTER) and VARCHAR (CHARACTER VARYING), SQL offers an NCHAR (NATIONAL CHARACTER) and NVARCHAR (NATIONAL CHARACTER VARYING) type. In some databases, this is the better datatype to ...
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 ...
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
1k views

Oracle Text will not work with NVARCHAR2. What else might be unavailable?

We are going to migrate an application to have it support Unicode and have to choose between unicode character set for the whole database, or unicode columns stored in N[VAR]CHAR2. We know that we ...
7
votes
4answers
11k views

When must we use NVARCHAR/NCHAR instead of VARCHAR/CHAR in SQL Server?

Is there a rule when we must use the Unicode types? I have seen that most of the European languages (German, Italian, English, ...) are fine in the same database in VARCHAR columns. I am looking ...
6
votes
2answers
383 views

How to decode nvarchar to text (SQL Server 2008 R2)?

I have a SQL Server 2008 R2 table with nvarchar(4000) field. Data that stores this table look like '696D616765206D61726B65643A5472' or '303131' ("011"). I see that each char is encoding to ...
6
votes
2answers
500 views

SQL performance: Is there any performance hit using NVarchar(MAX) instead of NVarChar(200)

I am wondering if there is any disadvantage on defining a column of type nvarchar(max) instead of giving it a (smaller) maximum size. I read somewhere that if the column value has more than 4?KB the ...
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
6answers
3k views

Limiting NVARCHAR size in SQLServer?

I was wondering what would be the consequences of setting NVARCHAR fields to MAX instead of a specific size in SQL Server 2008, and limiting the input from the application's logic. Also, would these ...
4
votes
2answers
427 views

Should I be using JDBC getNString() instead of getString()?

We are building a Java application backed by an Oracle database that we access using JDBC (drivers ojdbc6.jar and orai18n.jar). The database schema stores text columns primarily using the NVARCHAR2 ...
4
votes
2answers
454 views

Converting nvarchar(4000) to nvarchar(max)

We have a few tables in our SQL Server (2005 & 2008) database with columns defined as nvarchar(4000). We sometimes need to be able to store more data than that and consider to use nvarchar(max) ...
4
votes
1answer
974 views

How to return an nvarchar(max) in a CLR UDF?

Assuming following definition: /// <summary> /// Replaces each occurrence of sPattern in sInput with sReplace. This is done with the /// CLR: new RegEx(sPattern, ...
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 ...
3
votes
1answer
203 views

why varchar is slower than nvarchar [closed]

Possible Duplicate: varchar vs nvarchar performance I have changed all nvarchar column to varchar for a hope to speed up query. but my Query now become slow. before it was running 15 sec, ...
3
votes
1answer
263 views

SQL Inserting multilingual data - loses diacritic marks etc

Inserting multilingual data into a SQL 2008 database (nvarchar field) I notice that it seems to lose some special character marks. e.g. INSERT INTO [dbName].[dbo].[tbl_Question_i18n] ...
3
votes
2answers
329 views

Weird SQL Server 2005 Collation difference between varchar() and nvarchar()

Can someone please explain this: SELECT CASE WHEN CAST('iX' AS nvarchar(20)) > CAST('-X' AS nvarchar(20)) THEN 1 ELSE 0 END, CASE WHEN CAST('iX' AS varchar(20)) > CAST('-X' ...
3
votes
3answers
2k views

What is the performance penalty of XML data type in SQL Server when compared to NVARCHAR(MAX)?

I have a DB that is going to keep log entries. One of the columns in the log table contains serialized (to XML) objects and a guy on my team proposed to go with XML data type rather than ...
3
votes
2answers
5k views

How can Hibernate map the SQL data-type nvarchar(max)?

I have a column in my SQL-2005 database that used to be a varchar(max), but it has been changed to an nvarchar(max). Now I need to update my hibernate mapping file to reflect the change, and this is ...
3
votes
3answers
848 views

How BIG do you make your Nvarchar()

When designing a database, what decisions do you consider when deciding how big your nvarchar should be. If i was to make an address table my gut reaction would be for address line 1 to be ...
2
votes
1answer
20 views

Datatype in AdventureWorks database

When I looked at the tables in Adventure works, the design of each columns seems a bit strange. Since AdventureWorks shows industrial standards I want to follow it. In Phone number columns they have ...
2
votes
1answer
42 views

CAST nvarchar to datetime regardless of login date format?

I've got 2 servers with two different login date formats (English & British English). I need to be able to CAST an nvarchar value to datetime regardless of the date format. I have the following ...
2
votes
1answer
360 views

Oracle, utf-8, NVARCHAR2, and a lot of confusion

I have the following "translation" table in an oracle 10g database: ID VARCHAR2(100 BYTE) LANGUAGE CHAR(2 BYTE) COUNTRY CHAR(2 BYTE) TRANSLATION NVARCHAR2(2000 CHAR) TRACK_TIMESTAMP DATE ...
2
votes
1answer
230 views

Nvarchar perform better than varchar?

I am really surprisde to see that in my MS SQL table, I am defining a field varchar and doing group by with another table's field. When I do the same thing with the column as nvarchar it is 3 second ...
2
votes
1answer
584 views

Calculating SHA1 hash of a 'nvarchar' string using T-SQL

I'm trying to calculate SHA1 hash of a unicode string using T-SQL. The below code works fine with ASCII strings: declare @input varchar(50) set @input = 'some text' print 'SHA1 Hash: ' + ...
2
votes
1answer
394 views

What is the maximum size we can give for nvarchar in sqlite?

In SqlServer we can use NVarchar(MAX) but this is not possible in sqlite. What is the maximum size I can give for Nvarchar(?)?
2
votes
2answers
347 views

SQL LIKE Operator doesn't work with Asian Languages (SQL Server 2008)

Dear Friends, I've faced with a problem never thought of ever. My problem seems too simple but I can't find a solution to it. I have a sql server database column that is of type NVarchar and is filled ...
2
votes
3answers
104 views

Selecting not null column

I have a table with varbinary(max) column and nvarchar(max) column. One of them is null and the other has a value. I would like to return the column that has the value as a varbinary(max) column. So ...
2
votes
3answers
128 views

Is there a way to get SQL Server to automatically do selects on hash values of nvarchar fields?

I'm not sure how to better phrase this question so it's possible I missed a previously asked question. Feel free to close this and point me to the correct one if it exists. I have a table with two ...
2
votes
1answer
423 views

FluentNHibernate and VARCHAR Columns

I am starting a simple .NET project with FluentNhibernate. I've followed few examples I've found on the Internet and it seems quite easy to grasp. I've realized that if I let FluentNhibernate build ...
2
votes
5answers
467 views

nvarchar concatenation problem

I am probably trying to do a simple thing after dealing with all the hard stuff but seems like this is giving me a headache. I am trying to concatenate text into variable @strXml which is an nvarchar ...
2
votes
1answer
906 views

Linq to SQL nvarchar problem

I have discovered a huge performance problem in Linq to SQL. When selecting from a table using strings, the parameters passed to sql server are always nvarchar, even when the sql table is a varchar. ...
2
votes
5answers
500 views

Nvarchar or varchar what is better use multiply of 2 or rounded full numbers?

My question is what is better to use in generating columns in SQL. Should the size of nvarchar (varchar) be multiply of 2 (32, 64, 128) or it's doesn't matter and we can use fully numbers example ...
2
votes
2answers
3k views

For Nvarchar(Max) I am only getting 4000 characters in TSQL?

This is for SS 2005. Why I am i only getting 4000 characters and not 8000? It truncates the string @SQL1 at 4000. ALTER PROCEDURE sp_AlloctionReport( @where NVARCHAR(1000), @alldate ...
2
votes
3answers
3k views

NVarchar(MAX) for short strings

I am interested is NVarchar(MAX) a good data type is I want to store short unicode strings which are 1-50 characters long, but most of them (more than 90%) are 5-10 characters long? The column will ...
2
votes
5answers
458 views

NVARCHAR sizes in SQL Server 2005

In SQL Server 2005 (not 7.0), is there any reason to use NVARCHAR(255) instead of 256 or some other number? Is there any optimal size, and is there any reason to use powers of two? (I will be ...
2
votes
2answers
76 views

How much of a page is occupied by nvarchar(X)?

What are the storage requirements for nvarchar(X)? So for example, if the value in a column is much smaller than X, how much is actually stored in the database page?
2
votes
1answer
617 views

French Text stored in SQL Server Appears Wrong, how to make it appear correctly

I've got a table that is comprised of the following structure. CREATE TABLE [dbo].[tblData]( [ID] [numeric](18, 0) NOT NULL, [QID] [varchar](25) NOT NULL, [Data] [nvarchar](255) NULL, ...
2
votes
5answers
932 views

Is there a reason why I shouldn't use NVARCHAR in Sql Server?

I'm designing a database scheme right now and I figure just to be safe I should use nvarchar for my textual column's datatypes (for unicode support). While I don't expect non-english text I figure it ...
1
vote
1answer
98 views

The wired length of varchar and nvarchar in T-SQL

I had a question about the Transcat SQL, below is the sql code; DECLARE @main nVARCHAR(max); --there are over 4000 characters to @main set @main = '01234567890123456789...'; Print len(@main) the ...
1
vote
0answers
130 views

How to insert data into NVARCHAR2 field with plsql developer?

Oracle version: 11gr2, NLS_CHARACTERSET: WE8MSWIN1252, NLS_NCHAR_CHARACTERSET: AL16UTF16, client NLS_LANG: AMERICAN_AMERICA.WE8MSWIN1252, PL/SQL Developer version: 8.0 I have a table which has a ...
1
vote
3answers
50 views

Syntax for linq query to List<string>

I am trying to do something like this... public static List<string> GetAttachmentKeyList() { DataClassesDataContext dc = new DataClassesDataContext(); List<string> list = from a ...
1
vote
1answer
42 views

implications of using nvarchar(max) with non-indexed fields

Could anyone explain the implications of storing strings into a column that is defined as nvarchar(max) instead of defining the length of say nvarchar(500)? The table would contain multiple fields and ...
1
vote
3answers
108 views

At what point does it become more efficient to use a text field than an nvarchar field in SQL Server?

How long does an nvarchar field need to be before it is better to use a text field in SQL Server? What are the general indications for using one or the other for textual content that may or may not ...
1
vote
1answer
927 views

Convert nvarchar to bigint in Sql server 2008

I want insert all rows of a table into another table, and I also want convert a nvarchar field into bigint, but when I use convert(bigint, col1) SQL Server shows an error: Error converting data ...
1
vote
4answers
697 views

nVarchar and SqlParameter (C#)

I'm developing an application wich must support several languages. To solve the special characters problem I'm using NVarhcar for my text fields. So my SQL query for a text field is insert into ...
1
vote
1answer
617 views

Converting ntext to nvcharmax(max) - Getting around size limitation

I'm trying to change an existing SQL NText column to nvcharmax(max), and encountering an error on the size limit. There's a large amount of existing data, some of which is more than the 8k limit, I ...

1 2