A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Which schema design for best SELECT performance?



 
 
Thread Tools Display Modes
  #1  
Old December 9th, 2005, 03:38 PM posted to microsoft.public.access.tablesdbdesign
external usenet poster
 
Posts: n/a
Default Which schema design for best SELECT performance?

Hi,

Any help on clarifying the following would be much appreciated.

Given an unlimited number of categories with each category containing
the data {ID, NAME, DETAILS} which of the following schemas is the
best performing in terms of SQL SELECT access given that each category
contains an average of 100 records. The really important factor is the
speed of the SELECT clause - the performance of the UPDATE, INSERT,
DELETE clauses as well as storage size efficiency are not important.

**SCHEMA A**
Each category uses it's own table such that SQL access may be
"SELECT ID, NAME, DETAILS FROM Category1"
"SELECT ID, NAME, DETAILS FROM Category2"
"SELECT ID, NAME, DETAILS FROM Category3"
etc..

**SCHEMA B**
A single table is used with an additional CATEGORY field
"SELECT ID, NAME, DETAILS FROM TABLE WHERE CATEGORY = 1"
"SELECT ID, NAME, DETAILS FROM TABLE WHERE CATEGORY = 2"
"SELECT ID, NAME, DETAILS FROM TABLE WHERE CATEGORY = 3"
etc...

Regards,

Steve.
  #2  
Old December 9th, 2005, 04:13 PM posted to microsoft.public.access.tablesdbdesign
external usenet poster
 
Posts: n/a
Default Which schema design for best SELECT performance?

If there is never any need to query across more than 1 category, then a
separate table for each category will be more efficient for simple selects.
But a single table for all categories provides much more flexibility for
other queries of the data as users' requirements change and grow.
--
Ted

  #3  
Old December 10th, 2005, 10:38 AM posted to microsoft.public.access.tablesdbdesign
external usenet poster
 
Posts: n/a
Default Which schema design for best SELECT performance?

It would be a much better design to have 1 categories table. I don't think
the performance issue should be too much of a problem with a simple SELECT
query, but having multiple category tables could cause all sorts of other
difficulties in the future.

Andrew


"TedMi" wrote:

If there is never any need to query across more than 1 category, then a
separate table for each category will be more efficient for simple selects.
But a single table for all categories provides much more flexibility for
other queries of the data as users' requirements change and grow.
--
Ted

  #4  
Old December 10th, 2005, 12:02 PM posted to microsoft.public.access.tablesdbdesign
external usenet poster
 
Posts: n/a
Default Which schema design for best SELECT performance?

On Sat, 10 Dec 2005 02:38:03 -0800, andrew
wrotd:

It would be a much better design to have 1 categories table. I don't think
the performance issue should be too much of a problem with a simple SELECT
query, but having multiple category tables could cause all sorts of other
difficulties in the future.

Andrew


It would be a much better design to have 1 categories table

Agreed as far as design goes, but given that the *only* important
operation is a simple SELECT (with no joins) then if CATEGORY 1
contains 100 rows is it quicker to select all rows from the CATEGORY_1
table or select the 100 rows from amongst 10,000 rows in the CATEGORY
table (ie. "..WHERE CATEGORY=1")?

Steve.
  #5  
Old December 10th, 2005, 05:11 PM posted to microsoft.public.access.tablesdbdesign
external usenet poster
 
Posts: n/a
Default Which schema design for best SELECT performance?

I doubt you could even measure the difference, and certainly would not
perceive it. Since requirements and uses of systems keeps forever changing
and evolving, I would strongly recommend the more flexible approach of a
single table.
--
Ted

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
NEED HELP! User-level security/SQL question Matt Mcd General Discussion 0 October 21st, 2005 07:27 PM
Schema Design Question - Should I put [Ship Date] in Orders_Table or Order_Detail_Table ? Will General Discussion 7 September 28th, 2005 11:22 PM
Conversion SVC Worksheet Functions 9 February 28th, 2005 02:29 PM
adding column with numbers in query Giz Running & Setting Up Queries 15 February 11th, 2005 11:09 AM
Query design - select fields always default to "group by" Tripp Knightly Running & Setting Up Queries 2 May 29th, 2004 11:56 AM


All times are GMT +1. The time now is 08:40 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.