Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Big Tables? Real Life Examples.....

Re: Big Tables? Real Life Examples.....

From: <bchorng_at_yahoo.com>
Date: 4 Jul 2005 10:03:52 -0700
Message-ID: <1120496632.222003.199420@g43g2000cwa.googlegroups.com>

We used to have a table of 2.5 billion rows. If you design it right and give each row a unique id and index it right, there is no problem with it.

If you are worried about full table scans, then you don't need that size to kill your system. You should not allow FTS to happen when table gets that big. If you do, because typically the big tables have very high insertion rate, you may get snapshot too old anyway.

You can use partitions too. It will cut down your index depth and reduce query cost. Received on Mon Jul 04 2005 - 12:03:52 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US