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: How to aggregate PL/SQL records into a Result Set?

Re: How to aggregate PL/SQL records into a Result Set?

From: Ramon F Herrera <ramon_at_conexus.net>
Date: 8 Jul 2002 19:36:59 -0700
Message-ID: <c9bc36ff.0207081836.29106794@posting.google.com>


"AV" <avek_nospam_at_videotron.ca> wrote in message news:<457W8.6770$Qt6.589048_at_wagner.videotron.net>...
> Most probably it will be somewhat slower,
> but here is a plan:
> -- create buffer table.
> -- create PL/SQL procedure that
> ---- clean buffer table
> ---- populate table from any number of selects
> -- from java code
> -- call pl/sql procedure
> -- call simplest select from buffer table
>

Alex:

Right after I posted my question, I also came up with exactly the same solution that you suggest (hey, great minds think alike ;-) ).

My PL/SQL script uses a table called 'tempGUI' which is populated one record at a time, and its contents are removed after being sent to the client (actually, the deleting the old table is the very first thing done). The obvious problem is name collision. What if two clients access the stored procedure at the same time? Is there any way to have a private table (visible by only one instance of the stored procedure)? Or even better, is there some sort of RAM-based table?

BTW: I intend to implement the PIPELINED approach as soon as I have Oracle 9i up and running, but for now I am using the approach that you suggested. Again, I am worried about simultaneous access.

Thanks,

-Ramon Received on Mon Jul 08 2002 - 21:36:59 CDT

Original text of this message

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