On AS400 in interactive SQL in a 5250 session,

select * from myfile

returns rows from one member only when myfile has more than one member.

How can I get rows from a specific member?

Important: in the end I'd like to do this over JDBC with jt400 so really I want a solution that'll work there.

Thanks.

link|improve this question

17% accept rate
2  
The 17% under your name means that you have only accepted 17% of the answers to your questions. You never accepted an answer to this question either. Many people will stop answering your questions if you don't give them credit for their work. – Ryan Guill Jun 11 '10 at 17:19
feedback

2 Answers

You can create an alias using the create alias command:

CREATE ALIAS myLibrary/myAlias FOR memberLibrary/memberFile(memberName)

This will allow you to run sql against that member using the alias like you would any other file:

SELECT * FROM myLibrary/myAlias

Just remember that the alias will stick around after your session, they are not temporary. So if you wont need the alias when you are done, either create the alias in QTEMP or explicitly drop the alias once you are done with it:

DROP ALIAS myLibrary/myAlias

HTH

link|improve this answer
Thank you! I knew it could be down, now all I need is to query all the members. – Justin Sep 29 '10 at 16:12
feedback

Create an SQL alias for the member and query the alias, see this page for an example.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.