Click here to Skip to main content
15,897,226 members
Home / Discussions / Database
   

Database

 
GeneralRe: Help! What's this error? Pin
Blue_Skye16-Jul-05 6:25
Blue_Skye16-Jul-05 6:25 
GeneralRe: Help! What's this error? Pin
Michael P Butler16-Jul-05 6:31
Michael P Butler16-Jul-05 6:31 
GeneralRe: Help! What's this error? Pin
Blue_Skye16-Jul-05 10:39
Blue_Skye16-Jul-05 10:39 
GeneralThe Math.Round() in VS.NET and Round() in SQL Server 2000 Pin
Blue_Skye16-Jul-05 0:59
Blue_Skye16-Jul-05 0:59 
GeneralRe: The Math.Round() in VS.NET and Round() in SQL Server 2000 Pin
Rob Graham16-Jul-05 7:48
Rob Graham16-Jul-05 7:48 
Generalsqlce connection problems help Pin
Member 190267915-Jul-05 21:58
Member 190267915-Jul-05 21:58 
GeneralRe: sqlce connection problems help Pin
Rob Graham16-Jul-05 7:21
Rob Graham16-Jul-05 7:21 
GeneralADO.net Pin
boutie15-Jul-05 20:30
boutie15-Jul-05 20:30 
GeneralRe: ADO.net Pin
Rob Graham16-Jul-05 7:33
Rob Graham16-Jul-05 7:33 
QuestionHow to get @@IDENTITY when working offline with Dataset Pin
fracalifa15-Jul-05 2:17
fracalifa15-Jul-05 2:17 
AnswerRe: How to get @@IDENTITY when working offline with Dataset Pin
Rob Graham15-Jul-05 4:17
Rob Graham15-Jul-05 4:17 
GeneralRe: How to get @@IDENTITY when working offline with Dataset Pin
fracalifa15-Jul-05 4:24
fracalifa15-Jul-05 4:24 
GeneralRe: How to get @@IDENTITY when working offline with Dataset Pin
Michael Potter15-Jul-05 5:25
Michael Potter15-Jul-05 5:25 
GeneralRe: How to get @@IDENTITY when working offline with Dataset Pin
fracalifa15-Jul-05 8:19
fracalifa15-Jul-05 8:19 
GeneralBook recommendations Pin
PJ Arends14-Jul-05 17:41
professionalPJ Arends14-Jul-05 17:41 
GeneralRe: Book recommendations Pin
Christian Graus14-Jul-05 17:52
protectorChristian Graus14-Jul-05 17:52 
GeneralRe: Book recommendations Pin
PJ Arends14-Jul-05 21:39
professionalPJ Arends14-Jul-05 21:39 
GeneralRe: Book recommendations Pin
Rob Graham15-Jul-05 4:21
Rob Graham15-Jul-05 4:21 
GeneralRe: Book recommendations Pin
PJ Arends15-Jul-05 6:20
professionalPJ Arends15-Jul-05 6:20 
GeneralDatabase redesign Pin
Mincy George14-Jul-05 4:53
Mincy George14-Jul-05 4:53 
GeneralRe: Database redesign Pin
Michael Potter15-Jul-05 5:31
Michael Potter15-Jul-05 5:31 
GeneralRe: Database redesign Pin
Rob Graham16-Jul-05 7:55
Rob Graham16-Jul-05 7:55 
A better approach would be to take a hard look at the table design, and see if you can split the table into several smaller ones.
Text (or NText) columns can't be used in 'Like' queries (you would have to use ful text search) and they will introduce a performance hit, since the data is stored in a binary tree rather than in the table (the table will only contain a pointer to the root of the tree). this results in at least one additional disk IO for each field returned (possibly more if the field was large, and had to span several allocation nodes on the storage tree).

Certainly you have more data per row than can easily be displayed, so I would think multiple tables with a common foreign key would work.

Absolute faith corrupts as absolutely as absolute power
Eric Hoffer

The opposite of the religious fanatic is not the fanatical atheist but the gentle cynic who cares not whether there is a god or not.
Eric Hoffer

GeneralRe: Database redesign Pin
Anonymous18-Jul-05 6:20
Anonymous18-Jul-05 6:20 
GeneralImport data to SQL server Pin
cberam14-Jul-05 1:06
cberam14-Jul-05 1:06 
GeneralRe: Import data to SQL server Pin
phokojoe14-Jul-05 2:35
phokojoe14-Jul-05 2:35 

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.