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.
my question is: is it possible to create a cartesian product out of two files each of them having one field. The fields don't have something in common.
E.g: File1, Field1: A , B , C File2, Field2: 99, 55
The resulting HOLD-file should contain 2 x 3 = 6 rows, and two fields.
-* Now, we have: -* FILE1, FIELD1: ENGLAND, FRANCE..., 5 values. -* FILE2, FIELD2: ALFA, AUDI..., 10 values. -* -* And we need the cartesian product: -* FILE3, 5 x 10 = 50 records. -* -* Steps: -* 1. Create temp file of second file with common blank index. -* 2. Join first and temp file using the common blank index using TO ALL. -* 3. Create the cartesian product.
-* _____________________________________________________________________ -* Index second file with common blank index.
TABLE FILE FILE2 PRINT COMPUTE KEY/A1 = ' ' ; FIELD2 ON TABLE HOLD AS FILE2IND FORMAT FOCUS INDEX KEY END -RUN
-* _____________________________________________________________________ -* 2. Join files using common blank index. (*** TO ALL ***)
JOIN CLEAR * JOIN KEY WITH FIELD1 IN FILE1 TO ALL KEY IN FILE2IND AS J1
-* _____________________________________________________________________ -* 3. Create and show cartesian product.
DEFINE FILE FILE1 KEY/A1 WITH FIELD1 = ' ' ; END
TABLE FILE FILE1 PRINT FIELD1 FIELD2 END -RUN I hope this helps. Regards, MikelThis message has been edited. Last edited by: <Mabel>,