Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
874 views

replace ntext (more than 4000 characters) in sql server 2000

How to replace text in sql server 2000 in a ntext column with more than 4000 characters? conversion to nvarchar(max) does not work as it truncates values.
4
votes
1answer
1k views

LINQ problems with NText, Text and Image on SQL server

Apologies up front, because this isn't a question but a solution - but it took a lot of searching to find out the answer and google wasn't much help, so I wanted to give something back to the ...
3
votes
3answers
1k views

Concatenate ntext in SQL Server 2005

I need to concatenate 2 ntext columns into one. I can't convert them to nchar, cause both contains strings longer than 4000 chars. Is there a way to do this in SQL Server 2005?
3
votes
7answers
4k views

NHibernate nvarchar/ntext truncation problem

I'm using nhibernate to store some user settings for an app in a SQL Server Compact Edition table. This is an excerpt the mapping file: <property name="Name" type="string" /> <property ...
1
vote
2answers
417 views

How to get complete data from SQL management studio for ntext column?

I am using SQL server 2005. In one of the tables, I have a column "xmldefinition" which is of ntext type. Now the data in this column is very huge and contains whole xml text. eg:- ...
1
vote
1answer
2k views

ASP.Net Text with LineBreak from Multi-Line-TextBox to save in a database

I have PrivateMessage-System in my new Community-Page. I have a Multiline-Textbox for the Text of a private message. I save this text in a string, this string in a ntext SQL-Coloumn. I read this text ...
1
vote
2answers
271 views

Modifying value of ntext column

I have a column in ntext which holds large unicode strings longer than 4000 chars in length. I need to update/modify the data of the rows of the column in sql but I have no clue how to do so. I have ...
0
votes
0answers
34 views

Hibernate HQL - casting ntext to nvarchar for a group by

I'm having some problems running a group by on a SQL server query using Hibernate HQL. The table in question has ntext columns. Note the two 'convert' fields.. however hibernate chokes on this. Any ...
0
votes
2answers
62 views

How can I display an ntext field as a long string in a view?

We have one of our systems that is using SQL Views to make reports. This are exported into CSV. There is a table I'm working on that one of the fields is ntext, in this field we store some HTML code. ...
0
votes
0answers
100 views

C++ (very newbie) SQL Native Client error reading columns of type ntext

I'm starting to experiment with C + + and I ran into a problem with reading tables SQL ntext columns. With ntext Rows are 0... Can anyone help me understand how to do? Here's the code: ...
0
votes
1answer
192 views

.NET MVC: How to define ntext field in Code-First for SQL CE?

I have this model: public class Blog { public int BlogID { get; set; } public int CategoryID { get; set; } [MaxLength(70)] [Required] ...
0
votes
1answer
204 views

Entity Framework & SQL Compact Edition - how do I get ntext?

The answer to my question should be quite obvious, but I cannot find it. I have a edmx file that has one table. There is a field of type string. EF always generates nvarchar for that (which is kind of ...
0
votes
1answer
323 views

T-SQL appending data to NTEXT column

Can anyone help me figure out why I am getting the error below from the SQL script? Any and all help is greatly appreciated. DECLARE @Comment AS VARCHAR(2000) DECLARE @Len AS INT SET @Comment = ...
0
votes
1answer
340 views

Cannot Insert NULL into NTEXT field in SQL CE?

A simple example: CREATE TABLE People ( personID int not null , name nvarchar(50) not null , addrLine1 nvarchar(50) null , addrLine2 nvarchar(50) null ...
0
votes
1answer
404 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_ERRORSINCOMMAND(0x80040E14L) ...