Message-Id: <25929.337813@fatcity.com> From: "Mercadante, Thomas F" Date: Tue, 15 Jul 2003 10:40:22 -0400 Subject: RE: should you seperate indexes from tables in seperate datafiles I disagree with the concept of recovery not including some indexes because "they can be rebuilt later". To me, that's like going to a gas station and only filling the tank half-way because "I can get more gas later". You are saving small amounts of time up front, but will pay for it later on. I prefer to restore a totally whole database (when needed), and not having to rely on my memory to rebuild some indexes that we purposly chose not to back up. Just seems silly to me. Tom Mercadante Oracle Certified Professional -----Original Message----- From: Daniel Fink [mailto:daniel.fink@sun.com] Sent: Tuesday, July 15, 2003 11:24 AM To: Multiple recipients of list ORACLE-L Subject: Re: should you seperate indexes from tables in seperate datafiles? I'll agree with Rachel's methodology and add another consideration. Look at separating constraint indexes (primary keys, unique, perhaps even foreign keys) from performance indexes. If you find resource constraints on backups (time/disk), you can safely ignore the performance indexes. The recovery impact is that the application/sql may run slower without the indexes, but the data and constraints are intact. AFter the system is up and running, you can rebuild the indexes. Rachel Carmichael wrote: > > I separate indexes and tables into different tablespaces for > maintenance purposes, not for performance, as there really is no > performance benefit if you are on a system with multiple users. At any > given time, many users will be doing queries that read the indexes and > many users will be doing queries that read the tables. Besides, I don't > get to control how my disks are set up (part of that "now now little > girl, don't you worry your pretty little head about how the disks are > set up, you just leave that sort of stuff to us big data center > operations people" crap I get) > > Maintenance: if I lose an index tablespace datafile, I can just > offline/drop the tablespace and recreate it and the indexes within it > rather than do recovery. My indexes and my tables tend to have > different extent size requirements (most of my indexes are NOT > comprised of all columns in the table) so I separate them for extent