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: Maximun number of unions in a single query

Re: Maximun number of unions in a single query

From: AK <AK_TIREDOFSPAM_at_hotmail.COM>
Date: 9 Jun 2005 10:02:20 -0700
Message-ID: <1118336540.276026.212800@g14g2000cwa.googlegroups.com>


can you just wrap

insert into mytable(col1, col2, col3, col4) values(p1, p2, p3, p4);
insert into mytable(col1, col2, col3, col4) values(p5, p6, p7, p8); etc.

in a stored procedure?

Or, if you really need an insert statement, can you insert into a view and call the stored procedure from an instead of trigger? Received on Thu Jun 09 2005 - 12:02:20 CDT

Original text of this message

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