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 am trying to move a FOCUS file (.FOC) created in FOCUS 6.9 on VMS platform to WebFOCUS on a windows server. Fields with a format of DX.XX all return zero once moved to the new platform. Packed numerics (PX.XX) come across fine. Way back, when experimenting with PC-FOCUS, I remember having to IMPORT my .FOC files from VMS to the PC. Does WebFocus require a similar importation? Or do I need to tweek my MFD? Would appreciate any help. Thanks, Larry
WebFOCUS 7.6.7 on Win2k3 Output: HTML, PDF, Excel, DHTML, ALPHA
I don't think you can move a FOCUS database from one platform to another. You have to use the REBUILD DUMP facility to unload the data, move the unloaded data file, then us REBUILD LOAD to recreate the database.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
Thank you all. I tried both methods and have failed. With Tom's method I have no problem dumping and moving the data from VMS, but when I attempt to load the data back with my MODIFY code in WF get this message:
Reporting Server messages exceeded IBIF_max_messages, report retrieval aborted.
I broke the method down by segment and can load the root segment that has about 20K records. Loading a child segment that has about 250K records is where I get the above message. Is that big for WF?
I also tried the REBUILD approach. The problem here is my lack of understanding with the non-persistent sessions of WF. I received output that said the file was rebuilt, but I can't find it, and don't see any option to direct the output.
Thanks, Larry
WebFOCUS 7.6.7 on Win2k3 Output: HTML, PDF, Excel, DHTML, ALPHA
Put an APP HOLD dirname in your focexec that does the REBUILD. It will save your temp files there.
I don't know why the other technique didn't work. Make sure that the hold file is FORMAT ALPHA and that you do an FTP to bring the ftm and hold master to the target platform.
ah. SomethingWindows is my favorite platform. larry...the message Reporting Server messages exceeded IBIF_max_messages usually suggests you have a loop, where you least expect it, somewhere in your code. Before we talk about how to debug your code, lets just make sure some of the webworld fundamentals are covered... 250k records is not too big for wf. in version 7 , focus files (actually XFOCUS files) can be gigantic. Make sure you have created the .MAS for your target file, first. Make sure that file is an XFOCUS (way cool) rather than just a FOCUS file. (read up on XFOCUS) Make sure you have a USE statement to make sure your fex knows where you want to actually put that new database. Make sure you issue the CREATE command before you start loading the new file..otherwise the file just gets created in the agent (that temporary directory ... a new concept for your 'persistent' mind to grasp), and then vanishes ... which fits with your symptoms. USE D:\IBI\APPS\somedirectory\NEWCAR.FOC NEW END CREATE FILE NEWCAR MODIFY FILE NEWCAR ..yada yada ..or maybe your REBUILD syntax could go here, just make sure you've specified with your USE statement just exactly where that new file is s'posed to go. Welcome to the webworld. You will like it, we promise.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
1st, THANKS to Francis, Ginny and Susannah, their input is valued and exceptional, as always.
Larry, I have done over 10 conversions from MF to Windows, always used the dump / load technique.
Ensure these steps have been followed:
1. The FOCUS DATABASE master from the M/F is copy/paste into an application folder within the APP PATH. 2. Allocate HOLDMAST to a PDS you can write to; this will preserve your master when you HOLD the data. 3. Table out all the data and ON TABLE HOLD AS WHATEVER FOMAT ALPHA. This will will preserve P,D,I formatted fields. 4. Copy/Paste your master, WHATEVER, from HOLDMAST into an APP folder which in the APP PATH. (Remove any zeroes from bytes 73-80 for every line of the master, you can set NUM OFF to remove all of them) 5. FTP the data and, "possibly", you will need to use FILEDEF, i.e., APP FI WHATEVER DISK pathname/dataset_name (RECFM F LRECL XXX I have found that you need to filedef the data with RECFM and LRECL to accurately read the data 6. TABLE FILE WHATEVER and ensure your record counts from the MF match those on Windows. 7. TABLE FILE WHATEVER on Windows and HOLD the data. 8. CREATE FILE NEWFOCUSDB 9. Use MODIFY to load, example below
MODIFY FILE NEWFOCUSDB
FIXFORM FROM HOLD
-* Root Segment key field based on SEGTYPE
MATCH KEYFIELD1 KEYFIELD2 KEYFIELD3 etc
ON NOMATCH INCLUDE
ON MATCH CONTINUE
-* Child Segment key field based on SEGTYPE
MATCH CHILD1 CHILD2 CHILD3 etc
ON MATCH UPDATE *
ON NOMATCH INCLUDE
DATA ON HOLD
END
If I've missed anything, someone will chime in, hopefully...
Hope this helps...
TomThis message has been edited. Last edited by: Tom Flynn,
Two caveats: Numeric fields in the source Focus file may contain values that overflow their print format; dumping them in Alpha format will yield asterisks, preventing the Load of the segment. Similarly, fields with D format may lose precision in the process (i.e., 1/3, stored as .33333333 in a D12.2, will be loaded in the new Focus file as 0.33), so reports may not tie.
- Jack Gross WF through 8.1.05
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005