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 the above example the first two characters are the identifier of the record type, the x, r, y is data. For each record type, the data will be in the same format.
Is there a way to access this kind of file using one master file description?
Also, how would the master and access files be defined to read this kind of ISAM file?
We haven't seen anybody using ISAM files, now every file is a VSAM file. Try the following: Have a DUMMY root segment, SEGNAME=DUMMY FIELD =, A1,A1,$ SEGNAME=R1,PARENT=DUMMY,$ FIELD =RECTYPE,01,A2,A2,$ SEGNAME=R2,PARENT=DUMMY,$ FIELD= RECTYPE,02,A2,A2,$ SEG............ FIELD..........
There are good VSAM people in our Tech Support group, they might even have samples.
Originally posted by monte2000: [qb]We haven't seen anybody using ISAM files, now every file is a VSAM file.[/qb]
ISAM files are not supported by IBM any longer, but some people do still use them. SUFFIX=ISAM in a MFD should still work (it invokes an earlier version of the FOCSAM interface that supports ISAM files).
The syntax for SUFFIX=ISAM is similar to SUFFIX=VSAM though you don't get the latest and greatest features of the VSAM interface. The code example above of unrelated RECTYPEs with a DUMMY parent segment should work just fine for either ISAM or VSAM files.
ISAM and VSAM files do not require an access file, just a master file description.
Hope that helps.
-Chris
Posts: 55 | Location: New York | Registered: March 07, 2003