Click here to Skip to main content
15,914,488 members
Home / Discussions / Database
   

Database

 
QuestionDB connectivity problem Pin
grandypeace10-Apr-06 7:41
grandypeace10-Apr-06 7:41 
QuestionFast question Pin
papa198010-Apr-06 5:10
papa198010-Apr-06 5:10 
QuestionAccessing another Database from within a Database Pin
si_6910-Apr-06 1:54
si_6910-Apr-06 1:54 
AnswerRe: Accessing another Database from within a Database Pin
MatthysDT10-Apr-06 2:13
MatthysDT10-Apr-06 2:13 
AnswerRe: Accessing another Database from within a Database Pin
Frank Kerrigan12-Apr-06 2:18
Frank Kerrigan12-Apr-06 2:18 
QuestionFull Text Search Pin
TheEagle9-Apr-06 22:51
TheEagle9-Apr-06 22:51 
QuestionDiff. betn. nvarchar & varchar. Pin
Vikrant Badhai9-Apr-06 22:06
Vikrant Badhai9-Apr-06 22:06 
AnswerRe: Diff. betn. nvarchar & varchar. Pin
albCode9-Apr-06 22:13
albCode9-Apr-06 22:13 
The difference in varchar and nvarchar datatypes is simple. Nvarchar stores UNICODE data. If you have requirements to store UNICODE or multilingual data, nvarchar is your choice. Varchar stores ASCII data and should be your data type of choice for normal use.

UNICODE requires 2 bytes for each character you store. ASCII only requires 1 byte for each character. This is important because of the row size limitations of Sql Server is the same as the page size limit, which is 8060 bytes. This means a single row of a single varchar column can be varchar(8000), but a single row of a single nvarchar column can only be nvarchar (4000).

check this link

http://www.aspfaq.com/show.asp?id=2214[^]
AnswerRe: Diff. betn. nvarchar & varchar. Pin
Paddy Boyd9-Apr-06 23:29
Paddy Boyd9-Apr-06 23:29 
AnswerRe: Diff. betn. nvarchar & varchar. Pin
Colin Angus Mackay9-Apr-06 23:34
Colin Angus Mackay9-Apr-06 23:34 
AnswerRe: Diff. betn. nvarchar & varchar. Pin
Frank Kerrigan9-Apr-06 23:40
Frank Kerrigan9-Apr-06 23:40 
QuestionSimple (?) SQL Question Pin
ISIS559-Apr-06 10:08
ISIS559-Apr-06 10:08 
AnswerRe: Simple (?) SQL Question Pin
Colin Angus Mackay9-Apr-06 12:05
Colin Angus Mackay9-Apr-06 12:05 
GeneralRe: Simple (?) SQL Question Pin
ISIS559-Apr-06 15:07
ISIS559-Apr-06 15:07 
GeneralRe: Simple (?) SQL Question Pin
Colin Angus Mackay9-Apr-06 23:39
Colin Angus Mackay9-Apr-06 23:39 
QuestionSUM SQL? Pin
munklefish9-Apr-06 7:02
munklefish9-Apr-06 7:02 
AnswerRe: SUM SQL? Pin
Gerald Schwab9-Apr-06 8:29
Gerald Schwab9-Apr-06 8:29 
Question[INFO]For sqlexpress users Pin
Jerry Hammond9-Apr-06 4:38
Jerry Hammond9-Apr-06 4:38 
QuestionADO.NET in Visual Studio 2005 Pin
tanpanjang8-Apr-06 9:14
tanpanjang8-Apr-06 9:14 
AnswerRe: ADO.NET in Visual Studio 2005 Pin
Paddy Boyd9-Apr-06 23:31
Paddy Boyd9-Apr-06 23:31 
QuestionSQL Server 2000 Reporting Services VS.NET 2003 Pin
deklaritdude8-Apr-06 8:04
deklaritdude8-Apr-06 8:04 
AnswerRe: SQL Server 2000 Reporting Services VS.NET 2003 Pin
Frank Kerrigan9-Apr-06 23:46
Frank Kerrigan9-Apr-06 23:46 
QuestionSQL 2005 EXPRESS and Visual Studio 2005 Pin
ThePmanLives8-Apr-06 6:29
ThePmanLives8-Apr-06 6:29 
AnswerRe: SQL 2005 EXPRESS and Visual Studio 2005 Pin
Frank Kerrigan9-Apr-06 23:53
Frank Kerrigan9-Apr-06 23:53 
GeneralRe: SQL 2005 EXPRESS and Visual Studio 2005 Pin
ThePmanLives10-Apr-06 16:03
ThePmanLives10-Apr-06 16:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.