Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: insert as select
The point of inserting an order set of data is
that an index on the ordered columns will
have a very low clustering factor, and queries
against that set of columns will perform
very efficiently.
The syntax is nominally not supported
until Oracle 8.1. Strangely, though, it may work on 7.3.4 - see my website - as some of the 8.1 code seems to have
--
Jonathan Lewis
Yet another Oracle-related web site: www.jlcomp.demon.co.uk
smiths_at_logica.com wrote in message <3724BC9C.E1BED807_at_logica.com>...
>What do you have to gain be ordering your inserts?
>
>Ysteric's wrote:
>
>> Ii there anybody to tell me why :
>>
>> insert into rubriques
>> select r1.code c, r1.code_mere, r1.niveau, 0, 0, r1.libelle
>> from rubr r1
>> order by c
>>
>> does not work, but :
>> insert into rubriques
>> select r1.code c, r1.code_mere, r1.niveau, 0, 0, r1.libelle
>> from rubr r1
>>
>> works quit well !!!
>>
>> whats wrong with the "order by" clause
Received on Mon Apr 26 1999 - 15:29:29 CDT
![]() |
![]() |