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     Unknown error occurred. Agent on reporting server EDASERVE may have crashed.

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Unknown error occurred. Agent on reporting server EDASERVE may have crashed.
 Login/Join
 
Member
posted
I am joining to hold files to extract order information (both cost and retail) by skus. I'm getting the error, Unknown error occurred. Agent on reporting server EDASERVE may have crashed. Please investigate reporting server log.

The code from the first hold file is:

TABLE FILE SS_DW_SALES
SUM
ORDERED_QTY
EXTENDED_PRICE
BY ORDER_NO
BY ITEM_SKU
BY ROOT_LINE_ID
HEADING
""
FOOTING
""
WHERE ( SQL_DATE GE DT(&Start_Date) ) AND ( SQL_DATE LE DT(&End_Date 23:59:59.999) );
WHERE ITEM_SKU EQ '&SiteStuff_Sku';
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE HOLD AS DW_HOLD FORMAT FOCUS INDEX 'ROOT_LINE_ID'
ON TABLE SET HTMLCSS ON


And the second:

TABLE FILE SS_F_PO_LINES_TEMP
PRINT
PO_NO
RELEASE_NUM
SUPPLIER_ID
SUPPLIER_TYPE
PO_QTY
UOM_CODE
UNIT_COST
SUPPLIER_NAME
SUPPLIER_SKU
CUSTOMER_ID
PROPERTY_ID
CONVERSION_RATE
Extended_Cost
BY ROOT_LINE_ID
HEADING
""
FOOTING
""
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE HOLD AS PO_HOLD FORMAT FOCUS INDEX 'ROOT_LINE_ID'
ON TABLE SET HTMLCSS ON

They are joined at the ROOT_LINE_ID field.

I'm very new to this tool and would like to understand from the report painter tool what I should do to keep this type of error from happening.

Thanks!


7.6.4
Windows
Excel, HTML



 
Posts: 14 | Location: Austin, Texas | Registered: March 17, 2008Report This Post
Expert
posted Hide Post
Do the two requests run independently?

You don't need quotes around the ROOT_LINE_ID field on the hold statement.

The parent file can just be a hold format alpha. It is only important that the target be a FOCUS file and indexed.

You don't need any styling or headings/footings if you are holding data.

With all that said, that doesn't do anything to solve your problem.

We need to isolate why the agent is crashing and, let me tell you, that is not easy. So, to start I would try to run the two requests separately to see if they run alright. If they don't, try reducing the number of rows.

After you do that, let us know the results so we can figure out what to do next.


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google
 
Posts: 2723 | Location: Ann Arbor, MI | Registered: April 05, 2006Report This Post
Member
posted Hide Post
Ginny -

Thanks for the quick response.

As I created this in Report Painter, anything in the code came from the tool, so why would it put quotation marks if they aren't needed? At any rate, it appears that the second hold file is where the error is occuring. The first appears to run correctly.

Thanks!
Cathie


7.6.4
Windows
Excel, HTML



 
Posts: 14 | Location: Austin, Texas | Registered: March 17, 2008Report This Post
Virtuoso
posted Hide Post
I don't see anything syntax-wise in the second request that would cause a problem. Is there a reason the Extended_Cost field is lower case instead of upper like the rest of the fields? Ginny also mentioned reducing the number of rows. If you add WHERE READLIMIT EQ 10 does the error still occur?


Regards,

Darin



In FOCUS since 1991
WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex
Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex
WF Client: 77 on Linux w/Tomcat
 
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007Report This Post
Member
posted Hide Post
Darin,

The Extended Cost is a virtual column I added and I didn't CAP it....

I added the retrieval limit of 10 and it does not give me the error!

Cathie


7.6.4
Windows
Excel, HTML



 
Posts: 14 | Location: Austin, Texas | Registered: March 17, 2008Report This Post
Expert
posted Hide Post
Keep increasing the limit until it breaks. Could you be running out of disk space? How many rows are you actually returning? Can you do a COUNT * using your WHERE conditions for each table to find out how many rows there would be in each hold file?

Sorry about all of these questions but they will help isolate the problem.


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google
 
Posts: 2723 | Location: Ann Arbor, MI | Registered: April 05, 2006Report This Post
Gold member
posted Hide Post
Do you have FOC2GIGDB turned on? Could your second TABLE file be returning a result set that is greater than 2 Gig in size (total file size)? If that is the case, you may be failing on exceeding the FOCSORT size limit. I see you're on version 7.6, which has unlimited FOCSORT, provided FOC2GIGDB is turned on.


Diptesh
WF 7.1.7 - AIX, MVS
 
Posts: 79 | Location: Warren, NJ, USA | Registered: October 25, 2006Report This Post
Platinum Member
posted Hide Post
When you ran the request individually
TABLE FILE SS_DW_SALES
TABLE FILE SS_F_PO_LINES_TEMP

How large were each of the HOLD files?

If you then TABLE'd the HOLD file, PRINT *, is the data correct? Do you see any "special" characters?
 
Posts: 140 | Registered: May 02, 2007Report This Post
Member
posted Hide Post
quote:
Originally posted by Diptesh Patel:
Do you have FOC2GIGDB turned on? Could your second TABLE file be returning a result set that is greater than 2 Gig in size (total file size)? If that is the case, you may be failing on exceeding the FOCSORT size limit. I see you're on version 7.6, which has unlimited FOCSORT, provided FOC2GIGDB is turned on.


Is this a server-side setting?


7.6.4
Windows
Excel, HTML



 
Posts: 14 | Location: Austin, Texas | Registered: March 17, 2008Report This Post
Gold member
posted Hide Post
Yes, FOC2GIGDB is a server side setting, but I think you can also set it in your Focexec. Try setting it in the Focexec first, to see whether that resolves your problem before turning it on at the server level. Remember though that unlimited Sort file sizes have their downside. You could have a 'monster' query that may consume all available space on the server.


Diptesh
WF 7.1.7 - AIX, MVS
 
Posts: 79 | Location: Warren, NJ, USA | Registered: October 25, 2006Report 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     Unknown error occurred. Agent on reporting server EDASERVE may have crashed.

Copyright © 1996-2020 Information Builders