Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Order rows
I suppose you can if you don't care about wasted disk space, I know everyone says "disk is cheap" but that's only until you explain to your manager that you need a 100GB disk for a 10GB (real used space) database because you are forcing order by storing each row in one block and never reusing space freed up by deleted rows :)
|--------+-----------------------> | | | | | | | | kaygopal_at_yaho| | | o.com | | | | | | 05/15/2002 | | | 10:28 AM | | | Please | | | respond to | | | ORACLE-L | | | | |--------+-----------------------> >----------------------------------------------------| | | | To: ORACLE-L_at_fatcity.com | | cc: (bcc: Rachel Carmichael) | | Subject: Re: Order rows | >----------------------------------------------------|
Rachel:
If you want to FORCE the order you can do couple of things like having a big
PCTFREE (to make sure that no rows are migrated because of the updates) and
small PCTUSED so that the blocks are never reused. In this case you will get
the
rows in the inserted order.
ANother alternative is your method (additional column SYSDATE)
Best Regards,
K Gopalakrishnan
Bangalore, INDIA
>
>
> Do you want to physically order them or do you just want to know by time
the
> order in which they were entered.
>
> if the first, no, not that I know of. If the later, yes, add another
column
> (ins_date date) and a trigger to populate that column with sysdate when
you
> insert a row. You can then order by ins_date
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: K Gopalakrishnan INET: kaygopal_at_yahoo.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: Rachel_Carmichael_at_Sonymusic.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Wed May 15 2002 - 10:33:26 CDT
![]() |
![]() |