Click here to Skip to main content
15,887,596 members
Home / Discussions / Database
   

Database

 
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 
GeneralRe: Import data to SQL server Pin
Vasudevan Deepak Kumar15-Jul-05 3:03
Vasudevan Deepak Kumar15-Jul-05 3:03 
GeneralChange SQL Server startup account to SA Pin
Toms Edison14-Jul-05 0:40
Toms Edison14-Jul-05 0:40 
GeneralRe: Change SQL Server startup account to SA Pin
Colin Angus Mackay14-Jul-05 2:35
Colin Angus Mackay14-Jul-05 2:35 
General<help me>Access Pin
vtalau13-Jul-05 23:43
vtalau13-Jul-05 23:43 
GeneralRe: <help me>Access Pin
Rob Graham16-Jul-05 8:33
Rob Graham16-Jul-05 8:33 
GeneralDatabase access error Pin
neoms2113-Jul-05 20:19
neoms2113-Jul-05 20:19 
GeneralRe: Database access error Pin
Christian Graus14-Jul-05 11:32
protectorChristian Graus14-Jul-05 11:32 
GeneralRe: Database access error Pin
neoms2114-Jul-05 17:49
neoms2114-Jul-05 17:49 
GeneralRe: Database access error Pin
Christian Graus14-Jul-05 17:53
protectorChristian Graus14-Jul-05 17:53 
GeneralRe: Database access error Pin
neoms2115-Jul-05 1:29
neoms2115-Jul-05 1:29 
Generalbulk import of data through C# Pin
PSI@work13-Jul-05 8:33
PSI@work13-Jul-05 8:33 
GeneralRe: bulk import of data through C# Pin
Christian Graus14-Jul-05 11:34
protectorChristian Graus14-Jul-05 11:34 
Generalhelp me...Access Pin
vtalau12-Jul-05 23:47
vtalau12-Jul-05 23:47 
GeneralRe: help me...Access Pin
Marc Soleda19-Jul-05 20:58
Marc Soleda19-Jul-05 20:58 

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.