1
vote
1answer
38 views
Linq to SQL nvarchar problem
Hi,
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 …
0
votes
2answers
50 views
TSQL: Any benefits for explicitly specifying NVARCHAR in a string?
When you add pass a new job_type to sys.sp_cdc_add_job @job_type,
(which is of type nvarchar(20))
You can pass the argument as either
N'cleanup'
cleanup
Are there any reaso …
1
vote
0answers
11 views
SQL Server CE nvarchar foreign keys with trailing whitespace
In SQL Server CE, foreign key constraints on nvarchar fields are only enforced after dropping the trailing whitespace. This means that if the PK is "foo " I can insert "foo" into t …
0
votes
2answers
273 views
Mapping to varchar and nvarchar in hibernate
If there are 2 columns in database, eg.
code varchar(3)
name nvarchar(50)
how to tell hibernate to pass varchar for searching by code?
In the hibernate mappings string is mapped …
2
votes
2answers
561 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 …
2
votes
5answers
370 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-engl …
1
vote
3answers
239 views
For Nvarchar(Max) I am only getting 4000 characters in TSQL?
Hi,
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(10 …
0
votes
2answers
81 views
Determine varchar content in nvarchar columns
I have a bunch of NVARCHAR columns which I suspect contain perfectly storable data in VARCHAR columns. However I can't just go and change the columns' type into VARCHAR and hope fo …
1
vote
5answers
104 views
Nvarchar or varchar what is better use multiply of 2 or rounded full numbers??
Hello,
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 us …
5
votes
6answers
438 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 su …
0
votes
1answer
86 views
OLEDB comparison problem nvarchar against ntext (SQLServer 2005)
I have table Tbl1(
SomeName nvarchar(64)
)
Over OLEDB I'm trying to select
SELECT 1 FROM Tbl1 WHERE SomeName = ?
binding 3 character unicode as parameter causes: DB_E_ERRORSINCO …
1
vote
3answers
98 views
Sql trying to change case letter and group similar nvarchar values
Hi you guys.
I am using sql server 2008 and I'm trying to build a query for displaying some overall results from a single sql table.
I want to display count(fieldname) for each d …
2
votes
3answers
295 views
NVarchar(MAX) for short strings
Hello,
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 charact …
0
votes
1answer
135 views
What is the difference between String and nvarchar(5000) in SQL?
I am doing my first database project in PostgreSQL or Oracle.
I would like to get an answer for my question.
2
votes
5answers
173 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 tw …
