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.
is it possible to hold a table from Oracle in an xfocus Format, with some extra space saveing Options? When I create the hold, I think this would be around 65 GB, which is too much. Using compress doesn't help...
Any ideas are welcome.
We also got hyperstage licensed, but want to try it without, because we are still in 8.1.05 and Need some more time to migrate to 8.2.03, where we got hyperstage licensed...
thank!!This message has been edited. Last edited by: FP Mod Chuck,
I'm not sure if this will compress it as much as you'd like but you can try HOLD FORMAT DATREC. According to the manual: DATREC format saves report output as a sequential file with a Master File, and stores numeric fields as binary numbers without aligning them on fullword boundaries. The last field consists of one byte for each of the other fields in the Master File that indicates whether the corresponding field is missing. The output is a binary hold file with an FTM extension and a corresponding MAS.
However, I think if you've license Hyperstage in 8.2 you're probably allowed to also use it in the earlier release. The license is associated with your site code not version. You might want to ask IB tech support if that's true.
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
I worked on QA testing before the initial release of XFOCUS. The internal structure of XFOCUS files (unlike FOCUS files) is designed to support variable-length records -- records include a leading byte-count, and are indexed within the page by byte-offset, much like IDMS page structure. Thus, there is a potential for WF to store AnV fields in trimmed (ragged rather than Procrustean) form, compressing out the trailing whitespace.
So, if your data records include long character fields, with significant trailing blanks, see what happens if you apply RTRIM() in the request, or before storing in the XFOCUS file.This message has been edited. Last edited by: j.gross,
- Jack Gross WF through 8.1.05
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005
Also, if your data naturally factor into a multi-segment [hierarchical] structure, that can save a lot of room compared to storing in a one-segment (flat) structure.
Table ... sum [columns dependent on just key_1] by key_1 sum [columns dependent on key_1 and key_2] by key_1 by key_2 on table hold ... format xfoc
will build and populate the two-segment structure dynamically.This message has been edited. Last edited by: j.gross,
- Jack Gross WF through 8.1.05
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005