As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
In a FOCEXEC I made, I have a very simple join: Join fielda and fieldb in table a to fieldc and fieldd in tableb.
However, when I do a table print of my joined file, the results that show are not matching. FieldA in tablea should match fieldc in table b, but what I am getting is good results in fielda and in fieldc, just one value, which doesn't match anything and on top of that, the one value is repeated.
What might I be doing wrong? Any help is greatly appreciated, and I look forward to your replies.
MrBlurry, are you joining RDBMS tables? Multi-field JOINs do not work for flat files or FOCUS databases.
How about adding your environment information to your Profile Signature? It would help us to know which version of WebFOCUS you're running, what platform you're on and what kind of databases you're accessing.
Cheers.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
Thank you for replying..... I am using MVS/TSO cataloged datasets, which as far as I am aware are not FOCUS files. At least I'm able to look at the data manually.
Then they're flat files or VSAM files, depending on how you're looking at them manually.
You may be able to do what you want by creating a DEFINE based JOIN, that is, DEFINE new fields for both files that are the two fields concatenated together, e.g.
JOIN FIELDAB WITH FIELDA IN TABLEA TO FIELDCD WITH FIELDC IN TABLEB AS J1
DEFINE FILE TABLEA FIELDAB/A50 = FIELDA | FIELDB; END
DEFINE FILE TABLEB FIELDCD/A50 = FIELDC | FIELDD; END
Each file must already be sorted by the two fields. I am not 100% sure that this will work, I haven't had to do anything like this in quite a while, but it's worth a try. I hope someone else confirms that this is feasible.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
Join fielda and fieldb in table a to fieldc and fieldd in tableb.
However, when I do a table print of my joined file, the results that show are not matching
Question, is it posssible that tableb has multiple occurances of ..c and ..d that the join is picking up. Not seeing the masters or having a more vivid description of the data might help.
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004