Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Index based database?
EscVector wrote:
> DA Morgan wrote:
>> EscVector wrote: >>> The tables are not narrow. >>> Example 27 col table has 26 single column indexes. >>> >>> Still normal? >>> >>> >>> Jim Smith wrote: >>>> In message <1166109023.164657.84250_at_l12g2000cwl.googlegroups.com>, >>>> EscVector <Junk_at_webthere.com> writes >>>>> I've seen this a few times since getting into Warehousing, but I need a >>>>> sanity check. >>>>> >>>>> How often has anyone seen the total INDEX bytes exceed DATA bytes, >>>>> meaning I have more data stored in standard indexes, not index >>>>> organized tables, than regular heap tables. >>>>> >>>> It is not unusual. >>>> >>>> Given the rowid overhead in an index, if the table is quite narrow a >>>> single index could easily be larger than the table. If you have multiple >>>> indexes the total index space could be several times the size of the >>>> table. >>>> -- >>>> Jim Smith >>>> Ponder Stibbons Limited <http://oracleandting.blogspot.com/> >>>> RSS <http://oracleandting.blogspot.com/atom.xml> >> Please don't top post. Scroll to the bottom to reply. >> >> Given that this is a warehouse it may be fine and it may be excessive. >> >> Is is a "real" warehouse designed as one or just a copy of an OLTP schema? >> Are they being used? >> What index type? >> What version of Oracle? >> -- >> Daniel A. Morgan >> University of Washington >> damorgan_at_x.washington.edu >> (replace x with u to respond) >> Puget Sound Oracle Users Group >> www.psoug.org
I would treat the indexes with suspicion.
You might want to start with the following:
ALTER INDEX <index_name> MONITORING USAGE;
followed in a few hours/days with:
SELECT * FROM v$object_usage;
But if these indexes were created by the data modeler without any actual usage data ... the data modeler likely needs retraining.
-- Daniel A. Morgan University of Washington damorgan_at_x.washington.edu (replace x with u to respond) Puget Sound Oracle Users Group www.psoug.orgReceived on Sun Dec 17 2006 - 16:18:13 CST