IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

How to retrieve first row in a table in efficient way ?


IBM Mainframe Forums -> Mainframe Interview Questions
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
aryanpa1

New User


Joined: 26 May 2007
Posts: 45
Location: Chennai

PostPosted: Thu Jul 05, 2007 8:49 pm
Reply with quote

Hi ,

Can any body suggest me to retrieve the first row from a table in efficient way.

Thanks,
pavan
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Thu Jul 05, 2007 9:37 pm
Reply with quote

Hello,

What is meant by "first row"?

Sequential files have a first and last record, but databases do not have the same.

Keep in mind that most database processing is done via one or more keys. There is no "first".
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Thu Jul 05, 2007 9:42 pm
Reply with quote

Pavan,

This can be one way:

Code:
SELECT * FROM table Name
FETCH FIRST ROW ONLY       
WITH UR;                   
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Thu Jul 05, 2007 10:09 pm
Reply with quote

Hello,

That will fetch one record - not sure i understand how that would be "the first row from a table" icon_confused.gif . It would be the first row that particular query fetches, but that does not imply the first row in the table.

As i mentioned earlier, until what "first row" really means is defined, there is no way to read it and besides, there is not a "first row in the table" concept in most database systems.
Back to top
View user's profile Send private message
aryanpa1

New User


Joined: 26 May 2007
Posts: 45
Location: Chennai

PostPosted: Thu Jul 05, 2007 11:19 pm
Reply with quote

Hi Anuj ,

It worked. Thankyou...
Back to top
View user's profile Send private message
stodolas

Active Member


Joined: 13 Jun 2007
Posts: 632
Location: Wisconsin

PostPosted: Fri Jul 06, 2007 6:00 am
Reply with quote

Code:

SELECT * FROM table Name
FETCH FIRST ROW ONLY       
WITH UR;   


Is extremely useless. You just arbitrarily selected a row. It could be different the next time you do it, or it could be the same for the life of the table.

This is a complete waste of a query without a ORDER BY clause.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> Mainframe Interview Questions

 


Similar Topics
Topic Forum Replies
No new posts Load new table with Old unload - DB2 DB2 6
No new posts Pulling a fixed number of records fro... DB2 2
No new posts Multiple table unload using INZUTILB DB2 2
No new posts Check data with Exception Table DB2 0
No new posts Dynamically pass table name to a sele... DB2 2
Search our Forums:

Back to Top