Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
How to retrieve first row in a table in efficient way ?

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Interview Questions
Author Message
aryanpa1

New User


Joined: 26 May 2007
Posts: 17
Location: Chennai

PostPosted: Thu Jul 05, 2007 8:49 pm    Post subject: How to retrieve first row in a table in efficient way ?
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
References
dick scherrer

Global Moderator


Joined: 23 Nov 2006
Posts: 8732
Location: 221 B Baker St

PostPosted: Thu Jul 05, 2007 9:37 pm    Post subject:
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 D.

Global Moderator


Joined: 22 Apr 2006
Posts: 2229
Location: Phoenix, AZ

PostPosted: Thu Jul 05, 2007 9:42 pm    Post subject:
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

Global Moderator


Joined: 23 Nov 2006
Posts: 8732
Location: 221 B Baker St

PostPosted: Thu Jul 05, 2007 10:09 pm    Post subject:
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: 17
Location: Chennai

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

Hi Anuj ,

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

Senior Member


Joined: 13 Jun 2007
Posts: 647
Location: Wisconsin

PostPosted: Fri Jul 06, 2007 6:00 am    Post subject:
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
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Interview Questions All times are GMT + 6 Hours
Page 1 of 1