Click here to Skip to main content
15,898,538 members
Home / Discussions / Database
   

Database

 
QuestionSelect Query Pin
Girish48131-Mar-07 18:57
Girish48131-Mar-07 18:57 
AnswerRe: Select Query Pin
jijoaresseriljose31-Mar-07 23:15
jijoaresseriljose31-Mar-07 23:15 
AnswerRe: Select Query Pin
Girish4811-Apr-07 3:34
Girish4811-Apr-07 3:34 
AnswerRe: Select Query Pin
Krish - KP6-Apr-07 4:42
Krish - KP6-Apr-07 4:42 
QuestionBest practice in large tables Pin
Nader Elshehabi31-Mar-07 10:10
Nader Elshehabi31-Mar-07 10:10 
AnswerRe: Best practice in large tables Pin
Colin Angus Mackay31-Mar-07 10:23
Colin Angus Mackay31-Mar-07 10:23 
GeneralRe: Best practice in large tables Pin
Nader Elshehabi31-Mar-07 10:36
Nader Elshehabi31-Mar-07 10:36 
AnswerRe: Best practice in large tables Pin
kubben31-Mar-07 14:41
kubben31-Mar-07 14:41 
I don't think you need to worry about thousands of rows as much as what is the total number of bytes with your 293 columns. If you are using sql 2005 then your page size is 8060 bytes. You really don't want a single row to go over the page size, that can cause a lot of performace issues. If you can say that your total max row size would be 6000 bytes then I wouldn't worry about performace. If you max row size is over 8060 bytes then you really should break up the columns.
If you only have thousands like 10,000 rows in a table there is a pretty good chance that any query wouldn't even use an index. Which is the next point. Performace has more to do with indexes being set up properly then number of columns. Sql server always looks up full pages. So the smaller the row size the more rows that will be read with one page read. Anyway, that is probably a lot more then you wanted.

Here's a link to potential problems you might have:
http://www.sqlservercentral.com/columnists/awarren/2862.asp[^]

Hope that helps.
Ben
GeneralRe: Best practice in large tables Pin
Nader Elshehabi31-Mar-07 21:58
Nader Elshehabi31-Mar-07 21:58 
QuestionSQL Stored Procedure Column Pin
Lea Hayes31-Mar-07 9:24
Lea Hayes31-Mar-07 9:24 
AnswerRe: SQL Stored Procedure Column Pin
Colin Angus Mackay31-Mar-07 10:09
Colin Angus Mackay31-Mar-07 10:09 
GeneralRe: SQL Stored Procedure Column Pin
Lea Hayes31-Mar-07 10:17
Lea Hayes31-Mar-07 10:17 
GeneralRe: SQL Stored Procedure Column Pin
Colin Angus Mackay31-Mar-07 10:24
Colin Angus Mackay31-Mar-07 10:24 
Questionself join Pin
zizu9096@gmail.com31-Mar-07 5:31
zizu9096@gmail.com31-Mar-07 5:31 
AnswerRe: self join Pin
Colin Angus Mackay31-Mar-07 10:13
Colin Angus Mackay31-Mar-07 10:13 
AnswerRe: self join Pin
DQNOK2-Apr-07 6:55
professionalDQNOK2-Apr-07 6:55 
QuestionHow to calll Oracle stored procedures from Microsoft Reporting Services Pin
maskor ma31-Mar-07 1:36
maskor ma31-Mar-07 1:36 
QuestionError: DataBinding: 'System.Data.DataRowView' [modified] Pin
nothingbutcat30-Mar-07 16:25
nothingbutcat30-Mar-07 16:25 
QuestionComplex Select Query Pin
Girish48130-Mar-07 7:48
Girish48130-Mar-07 7:48 
AnswerRe: Complex Select Query Pin
DQNOK30-Mar-07 8:12
professionalDQNOK30-Mar-07 8:12 
GeneralRe: Complex Select Query Pin
Girish48130-Mar-07 8:28
Girish48130-Mar-07 8:28 
GeneralRe: Complex Select Query Pin
DQNOK30-Mar-07 8:39
professionalDQNOK30-Mar-07 8:39 
GeneralRe: Complex Select Query Pin
Jerry Hammond30-Mar-07 15:16
Jerry Hammond30-Mar-07 15:16 
GeneralRe: Complex Select Query Pin
DQNOK30-Mar-07 12:49
professionalDQNOK30-Mar-07 12:49 
GeneralRe: Complex Select Query Pin
Girish48130-Mar-07 21:23
Girish48130-Mar-07 21:23 

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.