Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CASE-OPENED - Issue Closed] FOCERRNUM 348

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CASE-OPENED - Issue Closed] FOCERRNUM 348
 Login/Join
 
Guru
posted
Good Morning, FOCUS Nation:

We opened a case with IBI because we found this FOCERRNUM appearing in our logs: FOCERRNUM 348.
I checked through Focal Point and IBI Tech Support but could not find this error described.
The initial IBI suggestion is that there are EDATEMP storage issues and we are researching further. Meanwhile, please let us know if you have seen this error message and solutions you may have taken.

All the best for the holidays.

This message has been edited. Last edited by: S.J. Kadish,


Sandy Kadish
Dev: 8.2.04- PostgreSQL
Test: 8.2.04 - PostgreSQL
Prod: 8.2.04 - PostgreSQL
 
Posts: 238 | Location: Atlanta, GA/Rehovot, Israel | Registered: May 06, 2003Report This Post
Expert
posted Hide Post
Happy Holidays Sandy!

? 348
-EXIT
(FOC348) ERROR WRITING HOLD FILE DESCRIPTION TO HOLD MASTER
An I/O error has prevented the HOLD MASTER from being written.
Check to see that adequate file space is available.


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
 
Posts: 1972 | Location: Centennial, CO | Registered: January 31, 2006Report This Post
Virtuoso
posted Hide Post
Do you have APP HOLD command in your code?


WebFOCUS 8206, Unix, Windows
 
Posts: 1853 | Location: New York City | Registered: December 30, 2015Report This Post
Guru
posted Hide Post
Hey, Tom:
Thanks for the best way to find a Focus error. We are currently researching the EDATEMP storage issues.

This message has been edited. Last edited by: S.J. Kadish,


Sandy Kadish
Dev: 8.2.04- PostgreSQL
Test: 8.2.04 - PostgreSQL
Prod: 8.2.04 - PostgreSQL
 
Posts: 238 | Location: Atlanta, GA/Rehovot, Israel | Registered: May 06, 2003Report This Post
Guru
posted Hide Post
BabakNYC - To answer your question we do not have an APP HOLD command in the code. Are there any advantages or disadvantages for adding an APP HOLD command?


Sandy Kadish
Dev: 8.2.04- PostgreSQL
Test: 8.2.04 - PostgreSQL
Prod: 8.2.04 - PostgreSQL
 
Posts: 238 | Location: Atlanta, GA/Rehovot, Israel | Registered: May 06, 2003Report This Post
Virtuoso
posted Hide Post
APP commands redirect and/or change the location mapping of where WebFOCUS will read or write. There isn't any benefit to using them. The reason I asked was to find out if your code might be redirecting the HOLD MASTER to a directory you may not have write access to.


WebFOCUS 8206, Unix, Windows
 
Posts: 1853 | Location: New York City | Registered: December 30, 2015Report This Post
Guru
posted Hide Post
Reaching out again to see if anybody else has seen a (FOC348) or (FOC0348) appearing anywhere. On our side three Report Caster jobs failed at exactly the same time in production. While the error appears to indicate an EDATEMP issue we have not seen this error anywhere else.

Thanks as always.


Sandy Kadish
Dev: 8.2.04- PostgreSQL
Test: 8.2.04 - PostgreSQL
Prod: 8.2.04 - PostgreSQL
 
Posts: 238 | Location: Atlanta, GA/Rehovot, Israel | Registered: May 06, 2003Report This Post
Master
posted Hide Post
Sandy-

EDATEMP lives under a folder structure something like this:
\\myservername\ibi_parent\srv81\wfs\edatemp 

This UNC would map to a physical drive.

Have you checked with your admin folks to make sure there is plenty of space available on that drive, at the time the 348's are encountered?
 
Posts: 822 | Registered: April 23, 2003Report This Post
Guru
posted Hide Post
Our understanding from the server team is that there is adequate space in EDATEMP


Sandy Kadish
Dev: 8.2.04- PostgreSQL
Test: 8.2.04 - PostgreSQL
Prod: 8.2.04 - PostgreSQL
 
Posts: 238 | Location: Atlanta, GA/Rehovot, Israel | Registered: May 06, 2003Report This Post
Virtuoso
posted Hide Post
Sandy --

My recollections is that the Hold MASTER file gets written and closed before the Table process starts pumping rows into the corresponding data file. Normally (unless you direct otherwise with APP commands), the hold mfd and hold data target to the same temp directory.

Given that mfd's are pretty minuscule, a foc348 "ERROR WRITING HOLD FILE DESCRIPTION TO HOLD MASTER" would indicate an immediate i/o failure (such as a permissions issue), not a space issue.

Is this the first Hold that the report performs?


- Jack Gross
WF through 8.1.05
 
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005Report This Post
Expert
posted Hide Post
I concur with Jack although, if you have several subprocesses building data throughout your job, it could be that the available space is used before the point at which your MFD is being written.

e.g. table file abc hold as hold1; table file xyz hold as hold2; If hold 1 used all availale space, then writing hold2.mas could fail.

So you need to know at what point the process is failing.

Also, EDATEMP might be adequately sized as far as your systems bods are concerned but, as all temporary files are deleted on this type of job failure, the space should become free again after failure. Best to monitor EDATEMP as the failing process runs to see how things fare.

I have seen situations where this has occured and the root cause has very often been an almost complete dump of data into a hold file to be manipulated rather than passing as much processing to the RDBMS. The solution was to interogate the SQL from the processes to ensure all predicates etc. were being passed to the SQL. Especially important around datetime selections as one of the most common issues in poor SQL seems to be selections on timestamps.

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Guru
posted Hide Post
I sincerely want to thank everybody for their kind and sage advice. The 348 issue ocurred on one day with three jobs that failed at the same exact time. We are installing EUM which should help us better monitor these EDATEMP situations.


Sandy Kadish
Dev: 8.2.04- PostgreSQL
Test: 8.2.04 - PostgreSQL
Prod: 8.2.04 - PostgreSQL
 
Posts: 238 | Location: Atlanta, GA/Rehovot, Israel | Registered: May 06, 2003Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CASE-OPENED - Issue Closed] FOCERRNUM 348

Copyright © 1996-2020 Information Builders