Here's the stored proc:
(Body is the ntext field)
CREATE Procedure usp_GetMessage
(
@MessageID int,
@Subject varchar(255) output,
@Body ntext output,
@Deliver char(12) output,
@...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/VB_DB/Q_10264796.html
Zones:
VB DBDate Answered: 01/25/2000 Grade: A Views: 0
what is the equavelnt text/ntext sql data type on ado constants on adovbs.inc
////////////////////////////////////////////////////
'---- DataTypeEnum Values ----
Const adEmpty = 0
Const adTin...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_20326896.htm...
Zones:
ASPDate Answered: 07/23/2002 Grade: A Views: 5
I have two tables. The first is content, the second is contentversions. Content contains current content, contentversions contains previous versions of content, and is linked one-to-many. One piece...
http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_20583167.html
Hello,
I want to draw the content of a ntext field from an SQL Server database into a textarea.
It works perfect when using a memo field in Access, but here with SQL Server, the textarea rema...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_20699430.htm...
Zones:
ASPDate Answered: 08/05/2003 Grade: A Views: 0
Hello,
this query returns empty fields for 'content'. It was an 'nvarchar(4000)' without problems, but had to make it a 'ntext(16)' because the available text space was not long enough ...
Se...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_21155026.htm...
Zones:
ASPDate Answered: 10/04/2004 Grade: B Views: 0
I'm storing long text strings in an ntext field in my db and would like to be able to draw sections of text without pulling it all. I would like to add markers in the text, like say {section1} som...
http://www.experts-exchange.com/Database/Miscellaneous/Q_21355132.html
Zones:
DatabasesDate Answered: 03/24/2005 Grade: A Views: 0
I have an ntext field that I am trying to update. Some of the records have previous data in that column and some of them are NULL. When I use the sql below I get the following error.
"[Macromed...
http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_21525359.html
public void ProjectResponseandRespondentToDB(DataRow dr, int intId)
{
const string CONN_STRING = "Initial Catalog=RG_Admin;Data Source=10.1.1.99;user id=sa;password=Pa...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_22003383.html
Zones:
C#Date Answered: 09/26/2006 Grade: A Views: 0
We have to a stored procedure, which can perform searches inside nchar, nvarchar, ... except ntext.
It uses "LIKE" for string matching.
I want to extend it, so it supports ntext... I know that ...
http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_22045711.html
Hello,
Is it possible to define a variable of type ntext in stored procedure?
I have a table which contains one column (ntext) for mail body. When I sent that mail body to any person from sto...
http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_22121431.html