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: Concurrent/Parallel Execution

Re: Concurrent/Parallel Execution

From: ihb <email_at_email.com>
Date: Wed, 22 Nov 2006 15:07:00 -0500
Message-ID: <12m9bf5hj3edn90@corp.supernews.com>

<mfullerton_at_gmail.com>
>I agree with Robert, cross database union is what you need. Believe it
> or not, this is not uncommon to do, and since this is theory only
> (Keeping it Simple), here is what can be done:
>
> create database links to each target database. Write a view to do you
> union:
> select my_column from my_table_at_orcl1
> union
> select my_column from my_table_at_orcl2
> union
> select my_column from my_table_at_orcl3;
>
> A better way to do this is create a data warehouse environment:
>
> create database links to each system
> create materialized views on each target table
> create a materialized view on top of all of them that has your specific
> where clause info, summaries, etc...
>

Right, but the tricky part is what I asked ORIGINALLY - Parallelism : i.e. orcl1, orcl2, orcl3 run simultaneously
So you think, "Parallel Query" is the way to achieve this ? thanks Received on Wed Nov 22 2006 - 14:07:00 CST

Original text of this message

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