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  dBforums > General > Database Concepts & Design > DB Design and optimization

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-26-04, 01:13
rageous rageous is offline
Registered User
 
Join Date: Apr 2004
Posts: 9
DB Design and optimization

I have an application that needs to handle huge amounts of data. I get roughly 100,000 records per hour. I need to store this information for several months. I would want to use MySQL as my DB.
I have devised a set of archiving tables (EveryHour, EveryDay, EveryWeek and EveryMonth). I populate these tables from the previous tables after crunching. I am considering using multiple tables within the same level (as in EveryDay1, EveryDay2 etc). I would use a MetaData table which would have information about about how data is spread over these multiple tables based on start index and end index.
Somehow I feel there must be a more optimal way of doing this with other DB design.

Thanks is advance
rageous
Reply With Quote
  #2 (permalink)  
Old 04-26-04, 16:10
andrewst andrewst is offline
Moderator.
 
Join Date: Sep 2002
Location: UK
Posts: 5,171
I don't suppose mySQL offers table partitioning? For example, Oracle lets you have a single table that is partitioned by some criteria, which enables easier data management (old partitions can be taken off-line for example).
__________________
Tony Andrews
http://tinyurl.com/tonyandrews
Reply With Quote
  #3 (permalink)  
Old 04-27-04, 02:15
cybershadow_jp cybershadow_jp is offline
Registered User
 
Join Date: Dec 2003
Location: Tokyo Japan
Posts: 26
i also know that SQL Server also supports multiple partitions...
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On