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.
I know we cannot do a MATCH FILE in InfoAssist (Ref: These Posts)
But, is there any way in IA to get the same results: All records from two sources? NOTE: The sources have a different number of fields and the field names are difference?
I do get what I want using MATCH FILE.
I know "InfoAssist isn’t a development tool and not really meant for data manipulation.". Do I need to wait till 8205 for such functionality (if it'll be there)?This message has been edited. Last edited by: Doug,
In FOCUS Since 1983 ~ from FOCUS to WebFOCUS. Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
I think so... What would that condition be? WHERE [field1] exists-or-is-missing OR [field2] exists-or-is-missing
It would be a OLD-OR-NEW in MATCH FILE.
A JOIN is based on the existence of what's in the HOST, right? So, we can get something from the target if it's missing in the target... But not if it's missing in the host, right?
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
Yes, you can obtain a Cartesian product of two data sets with a JOIN.
-* File Many2Many.fex
TABLE FILE CAR
PRINT COUNTRY
CAR
COMPUTE FLAG/A1='X';
ON TABLE HOLD FORMAT FOCUS INDEX FLAG
END
-RUN
-*
JOIN FLAG WITH SEQ_NO IN GGSALES TO ALL FLAG IN HOLD AS J1
-*
DEFINE FILE GGSALES
FLAG/A1 WITH SEQ_NO = 'X';
END
-*
TABLE FILE GGSALES
"Example of Many-2-Many JOIN"
PRINT SEQ_NO
COUNTRY
CAR
WHERE SEQ_NO LE 2;
ON TABLE SET STYLE *
INCLUDE=jellybean_combo.sty, $
TYPE = TITLE, JUSTIFY=CENTER,$
TYPE = DATA, COLUMN = SEQ_NO, JUSTIFY=CENTER,$
ENDSTYLE
END