× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Hello folks,

I have a join question.  What I want is to create a permanent (actually for one 
day) access path in batch that I can then use interactively.  I want to join 2 
(or more) files together, but select only the fields in the first file.  I want 
to select based on any field in any file.  I want to sequence the results in 
the original sequence of the first file.  I'm asking you folks (the 
"braintrust") if this is possible.

Here is an OPNQRYF that actually does accomplish what I want except for one 
thing - it isn't a permanent access path.  Running this interactively is NOT an 
option! (grin)

OPNQRYF    FILE((FILE1) (FILE2)) FORMAT(FILE1) + 
             QRYSLT('skrclc *ne 0') KEYFLD((File1Field1) +  
             (File1Field2) (File1Field3) (File1Field4)) JFLD((File1Field1 +
             File2Field1) (File1Field2 File2Field2) (File1Field3 File2Field3) + 
             (File1Field4 File2Field4))                          

Okay, now the SQL version (only selecting 4 fields for brevity) - no key 
sequencing is available, and I can't create an index over the view:

create view test as                                            
select File1.File1Field1, File1.File1Field2, File1.File1Field3, 
File1.File1Field4
FROM File1, File2 WHERE File2Field5 = 0 and
File1Field1 = File2Field1 and File1Field2 = File2Field2 and File1Field3 = 
File2Field3 and File1Field4 = File2Field4

Am I out of luck?  Have I not explained the problem well enough for you to tell?

Thanks!
Michael Polutta
Atlanta, GA

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.