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: Exporting Tables

Re: Exporting Tables

From: <tanel.poder_at_gmail.com>
Date: 28 Dec 2004 06:02:37 -0800
Message-ID: <1104242557.849915.190960@f14g2000cwb.googlegroups.com>


Generating the table list would be the way I'd go, but one alternative way would be to temporarily modify export views to achieve this:

  1. rename EXU9TABU view in sys schema to EXU9TABU_BAK (or EXU81TABU or EXU10TABU view, depending on which version of exp you're gonna use).
  2. create view exu9tabu as select * from sys.exu9tabu_bak where name not in ('T1', 'T2');
  3. grant select on exu9tabu to public;
  4. run your schema export (these 2 tables will be excluded thanks to new view)
  5. drop view sys.exu9tabu
  6. rename sys.exu9tabu_bak back to exu9tabu Or if on 10g - expdp has the exclude keyword...

Tanel. Received on Tue Dec 28 2004 - 08:02:37 CST

Original text of this message

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