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.
Since they are FOCUS files, you can use the USE statement to concatenate the 3 data bases. You can find documentation on this in the MVS/TSO Guide to Operations chapter of a mainframe FOCUS manual.
USE
file-1 AS mastername
file-2 AS mastername
file-3 AS mastername
END
You can then issue a TABLE request against the mastername and HOLD the output into another file which you must pre-allocate using the DYNAM ALLOC statement. Doc for that is in the same chapter.
I assume you are talking about mainframe files? If so, why not just concatenate the 3 files in your allocation? That way, you can process them as if thjey were one file. If you need to actually have just one file, simply do this concatenation with some utility program, and copy to a new output file.
Diptesh WF 7.1.7 - AIX, MVS
Posts: 79 | Location: Warren, NJ, USA | Registered: October 25, 2006
Couldn't you use the rebuild utility to do this? 1. Rebuild / dump for file b (dump b's contents) 2. Rebuild / load for file a (include b's contents into a) 3. Rebuild / dump for file c (dump c's contents) 4. Rebuild / load for file a (include c's contents into a) 5. Rebuild / rebuild for file a (reorganize file a) Look up the exact syntax for the Rebuild command.
This will only work correctly if the files have exactly the same segment and field names and if the files do not have equal key values.
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007