The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
28 views

How do I send unicode data to nvarchar field in stored proc with ado/vbscript?

I've been banging my head against the wall with this problem for the better part of two days, and my vbscript/ado is super rusty. I inherited a legacy product. It contains a method that performs ...
0
votes
1answer
11 views

How to split a string column based on '/' in sqlserver 2005?

Hi I don't know how to split a dd/mm/yyyy column into dd as Col1, mm as Col2, yyyy as Col3. It is a string Field, so I can't use Select Convert() query.
-1
votes
1answer
27 views

I am not able to find age by using year in SQL Server 2005?

I am writing a query as following SELECT DATEDIFF(year,Clmn_Dob,getdate()) AS DiffDate FROM tblABCD where Clmn_Dob is a NVARCHAR column. I want to find the age based on date of birth. But instead ...
-2
votes
1answer
43 views

Find closest addresses [closed]

I have a table with 700k addresses and need to find the ones around a given address. For instance if I put in 1234 MARKET ST I need to find 1230,1232,1234,1236,1238,1240 for 13 records including ...
2
votes
2answers
58 views

Maximum number of nvarchar(max) columns in sql server tables

What is limited of define Nvarchar(max) columns in SQL Server 2008 R2 ? I see this link But, I want get limit number of nvarchar(max) columns in one table.
0
votes
1answer
101 views

Convert string to nvarchar (import excel to mssql)

I have been trying to find a way to convert data type string to nvarchar while I am importing data from an excel spreadsheet. So far I have this piece of code to import the data through C#. // ...
1
vote
3answers
35 views

MSSQL nvarchar IF PROCEDURE exec with nvarchar input

I want know how to release IF with update and how to exec procedure with nvarchar input. There are table Dictionary with 2 values ('Orig','Translated') I need procedure that adds or replace ...
0
votes
1answer
33 views

VarChar to NVarChar and back

The environment is SQL Server 2012. I'm about to change a clr procedure returned result column from varchar to nvarchar, but I'm not sure if the characters which can be found in varchar code page will ...
0
votes
0answers
29 views

Change all columns of a certain type for whole database

At my job we have a few databases (+- 10) and each databases have a lot of tables (+- 200). It is very outdated and I would like to change all text fields that have a VARCHAR (pretty much all text ...
-1
votes
1answer
56 views

Convert nvarchar to int in order to join SQL tables in a view

I want to create a view which will display the info from two tables joined by different type fields. The one field is nvarchar and the other one is int. I know i need to convert one type in the other ...
0
votes
0answers
21 views

Bulk in tool throws a classic datatype exception but it's nvarchar(max)

Context: Im working on bulk-in tool to transfer data, from excel to sql server. There is a concept problem (I think) in this code, because throws an exception: "The field is too small to accept the ...
1
vote
0answers
55 views

Unicode Query in OpenRowSet

I have a stored procedure with nvarchar parameters. i want to get returned table using OPENROWSET. but when i use following codes the results would be incorrect Declare @ID int Declare @sql ...
1
vote
0answers
45 views

What is the Windows overhead when using SQL Server varchar vs. nvarchar?

I do not have need for foreign language characters or collation since my data is pure ascii. My concern is performance in the application code, and though I have read many arguments that varchar ...
0
votes
2answers
79 views

unique column of type nvarchar

I have a simple table: File: path | deleted | categories | description I want to use the table for a Linq to SQL entity model. On the model, that column path (which is string there, nvarchar in ...
0
votes
0answers
19 views

Option for nvarchar field type in MySQL database [duplicate]

I want to insert data like e.g. Visha'l in my MySQL 5.x database, but the field type nvarcharrequired to accept this special character is not available in MySQL data field type. Any other field type ...
0
votes
1answer
83 views

Retrieve a single entity's nvarchar field in ms crm4 using c# and asp.net

This is my code so far, im trying to retirieve the nvarchar string value of kez_customparamvalue. Normally for a decimal or float id use something like CrmDecimalProperty hoursAsCrmNumber = hours as ...
0
votes
1answer
116 views

Tsql nvarchar date update

I have a table(tabl) with column(Col) that is nvarchar(10) data type. I am not suppose to change the data type or data length. The column contains date in this format yyyy-mm-dd (2012-04-24) I need ...
1
vote
1answer
103 views

Converting nvarchar to varchar

I have a database with a lot of varchar columns. My datalayer, which is entity framework, interfaces with it. If I were to change all the column types from varchar to nvarchar, would it be safe? ...
1
vote
2answers
142 views

Unable to query nVarChar(Max) field in Access 2010

have used Stack Overflow as a resource hundreds of times, but my first time posting a question for some help! I've got a table in SQL Server 2005 which contains 4 nVarChar(Max) fields. I'm trying to ...
1
vote
2answers
238 views

nvarchar concatenation / index / nvarchar(max) inexplicable behavior

I today ran into a really weird problem in MSSQL (both 2008R2 and 2012). I'm trying to build up a string using concatenation in combination with a select statement. I have found workarounds, but I ...
0
votes
1answer
51 views

Why MYSQL Desc command showing char instead of nchar?

I have created two columns in a tables with NATIONAL VARCHAR Data Type? But, when i am running the command, desc The result shows the datatype as varchar, not nvarchar. Why is it so? Am i doing some ...
0
votes
1answer
149 views

SqlBindParameter Invalid precision value on a nvarchar(max) column

I have a table that has a column ([To]) that is defined as nvarchar(max). According to http://msdn.microsoft.com/en-gb/library/ms186939.aspx the maximum length of an nvarchar(max) column is 2^32. I ...
0
votes
1answer
78 views

SQL Server 2012: Select serialized data

I have some columns nvarchar type containing serialized strings. Query SELECT * FROM table; returns all data but serialized strings are empty. Do you have any idea about this issue?
-2
votes
2answers
62 views

SQL In an EAV model, does the length of the nvarchar matter?

I'm looking to set up a Entity-Attribute-Value table model, where I want the table to handle various data. I'd like to use nvarchar(max), but I'm worried that it may affect database performance (even ...
1
vote
1answer
295 views

SQL Server 2005: converting varchar to nvarchar issue

I have table with two varchar columns first_name and last_name. Now I need to convert these columns to nvarchar in order to support UTF-8. I choose nvarchar datatype in SSMS for these columns and ...
1
vote
4answers
179 views

SQLite C# query doesn' t work

I'm having trouble executing a query from C# to the SQLite DB, I use the following query and it gives me the error that something is wrong at: "max". create table ClockMessages (ID int identity(1, 1) ...
0
votes
0answers
107 views

SQL Server attempting to convert from nvarchar to int

I am new to SQL Server and skills are very limited. I am simply trying to run an Insert into command for a whole heap of data. I seem to be getting an error that it is trying to convert one of my ...
0
votes
1answer
307 views

How do I get an nvarchar from MS SQL as string using ODBC (C++)?

I'm trying to extract a string from my SQL database, but for some reason my parameters are wrong and I'm not sure why. Here is my code: SQLHENV environHandle; SQLHDBC connectHandle; SQLHSTMT ...
0
votes
2answers
676 views

Auto Increment nvarchar value in vb.net

I'm having a UserID field in my table and I need to get that value in my app and whenever I would like to add a new record it should increment by value '1'. So this is how I'm trying to get the last ...
1
vote
0answers
353 views

Conversion between NVARCHAR to VARCHAR

I've got an Oracle DB with ALL the character columns defined as NVARCHAR or NCHAR or NCLOB, using charset UTF-16. Now I want to migrate to a new DB that has charset UTF-8. Since it can store unicode ...
0
votes
1answer
70 views

Django || SyncDb || Create nvarchar fields

I'm just starting with Django and am trying to create a db table with nvarchar fields as opposed to varchar. I'm using MySQL and creating objects of type models.CharField() within my classes. Any ...
0
votes
1answer
179 views

Lambda string as VARCHAR

One of my Join key-selectors looks like this: x => x.A + "-" + x.B NHibernate makes "-" an extra parameter. This parameter gets the SQL type nvarchar and so the whole statement gets converted on ...
0
votes
1answer
97 views

2 different collations conflict when merging tables with Sql Server?

I have DB1 which has a Hebrew collation I also have DB2 which has latin general collation. I was asked to merge a table (write a query) between DB1.dbo.tbl1 and DB2.dbo.tbl2 I could write in the ...
1
vote
1answer
573 views

How does SQL Server store more than 4000 characters in NVARCHAR(max)?

I have defined a stored procedure that has a parameter of type NVARCHAR(max) and I process that string in my stored procedure. I know that max of nvarchar is 4000. But I have passed a string with 5700 ...
3
votes
1answer
632 views

Special characters displaying incorrectly after BULK INSERT

I'm using BULK INSERT to import a CSV file. One of the columns in the CSV file contains some values that contain fractions (e.g. 1m½f). I don't need to do any mathematical operations on the ...
5
votes
2answers
108 views

How do I force nvarchar input width in SQL Server?

I’ve got a script that I’ve created for our production line where the user enters some variables into the script before executing. The Problem is that the variables are NVARCHAR(9) and if the user ...
0
votes
1answer
128 views

SQL Server - NVARCHAR needed for European Languages?

We are doing an installation of our web-based application (.NET against SQL Server 2008) in Germany. We are in the midst of internationalizing the application and database. I realize that some ...
0
votes
2answers
229 views

Conversion failed when converting the nvarchar value 'Internet Explorer 3 original' to data type int

In SQL Server 2008 (TSQL), I've created a stored procedure like this: CREATE PROCEDURE SP_1_10_2 AS declare @mostValuableBook nvarchar(255) SELECT @mostValuableBook = Name FROM books WHERE price = ...
0
votes
2answers
196 views

group by nvarchar

First of all, sorry for my English I will try to explain in the best way. Is there a way to group by a column of type nvarchar in SQL Server 2008? I am going to explain it better: (at least I try) ...
0
votes
1answer
256 views

want to store varbinary value in nvarchar datatype?

My table testuidpwd have: User: Uid Password Passwordhash ---------------------------------------- 121 wrwrwr 0x0013531FA845AEA1E840BDE787336ED3CAEDFE6E 122 etetxw ...
1
vote
1answer
2k views

What is the biggest data type to use as a local variable in a stored procedure? [closed]

I have the next issue: --DECLARE @TEST NVARCHAR(MAX) --DECLARE @TEST2 NVARCHAR(MAX) DECLARE @TEST NTEXT DECLARE @TEST2 NTEXT NVARCHAR(MAX) is to small for the amount of text in need to put when ...
0
votes
1answer
503 views

What SQL column data type should be used to store email addresses?

What SQL column data type should be used to store email addresses? I'm thinking varchar(256) is probably the answer. Is there any reason it should be nvarchar(256)? I'm writing to a SQL Azure ...
-2
votes
1answer
442 views

Update Query with NVARCHAR(max) in SQL Server

Have an issue with SQL Server performance and wanted to see if anyone can give some tips about improving the performance of an update query. What I'm doing is updating one table with data from ...
1
vote
3answers
87 views

When does the space get allocated

If I declare a column as nvarchar(max), I understand that this will allocate 2Gb of space, but does it actually take the 2Gb, of disk space, straight away once I save the changes to the table? Or, is ...
0
votes
3answers
1k views

Substring sql nvarchar value from start to first non-int character

Have a numeric nvarchar values with some "extra-symbols" For example 1/2, 9/6, 14A They allways starts with number. How can I substring this "extra-symbols" values from start to index of first non-int ...
0
votes
1answer
475 views

SQL: insert space before numbers in string

I have a nvarchar field in my table, which contains all sorts of strings. In case there are strings which contain a number following a non-number sign, I want to insert a space before that number. ...
0
votes
0answers
110 views

nvarchar error message

I built a small project in ASP.NET with SQL Server database. When I view it in browser or debugging my project everything works well. But when I type something to my form and click to send I have ...
2
votes
1answer
884 views

Inserting greater/less than or equal symbol into SQL Server database

I am trying to insert ≤ and ≥ into a symbol table where the column is of type nvarchar. Is this possible or are these symbols not allowed in SQL Server?
1
vote
1answer
330 views

Weird exception for NVARCHAR

This one gives the exception: 'NVARCHAR' is not a recognized built-in function name. DECLARE @BatchIds TABLE ( BatchId AS UNIQUEIDENTIFIER , UserLogonId AS NVARCHAR(80) , ...
0
votes
2answers
108 views

Are numbers seen as strings in sql

This is really simple. Does SQL SERVER 2008 auto convert values to string for you ? I tried this Select * from Staff Where Division = 5 If I try to insert it, it works too. If I change 5 for five I ...

1 2 3