Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

 
 

Oracle Find Last Row

Oracle Database Tips by Donald BurlesonJune 30, 2015

Question:   How do I find the last row inserted?  I have been trying the following:

 select
  vehicle_id
from
  mytab
where
  rowid =(
    select
       max(rowid)
    from
       mytab);

Answer:  The query you are trying will return results but not the ones you intend.  

The rowid for a given row is a physical address and in no way indicates the order of insertion into the table.  

The only way to find the last row is to have a date or timestamp field that is populated by sysdate at the time of insertion and select the max value of that column. 

The following example shows how to query for the latest entry, when last_row is populated by sysdate at the time of insertion:

insert into mytab (vehicle_id, last_row) 123, sysdate
select
  vehicle_id,
  max(last_row)
from
  mytab
group by
  vehicle_id; 

Oracle does not insert rows in any particular order, and rows are inserted based on the next free block in the table's tablespace.  Hence, you need to procedurally mark the "first", "next" or "last" rows in a table.  

Also, see my notes on finding the top "n" rows in a table and the "top 10" rows.

 

 
Get the Complete
Oracle SQL Tuning Information 

The landmark book "Advanced Oracle SQL Tuning  The Definitive Reference"  is filled with valuable information on Oracle SQL Tuning. This book includes scripts and tools to hypercharge Oracle 11g performance and you can buy it for 30% off directly from the publisher.

 


 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  

and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.

 

 

��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster