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     Joining tables between subsystems

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Joining tables between subsystems
 Login/Join
 
Expert
posted
Why would I get the following message? I thought that was the strength of WebFOCUS - being able to join tables from multiple databases/nodes/subsystems?

(FOC2510) FOCUS-MANAGED JOIN SELECTED FOR FOLLOWING REASON(S):
(FOC2519) THE JOINED SEGMENTS RESIDE IN MORE THAN ONE NODE OR SUBSYSTEM
(FOC2590) AGGREGATION NOT DONE FOR THE FOLLOWING REASON:
(FOC2592) RDBMS-MANAGED JOIN HAS BEEN DISABLED
SELECT T1.Con_GUID,T1.Fund_Number,T1.DCRC,T1.Fund_Name,
T1.City,T1.FLName,T1.MYNS,T1.YYNS,T1.AYAS FROM
EIDWCRM.dbo.CRM_TotalsView T1 WHERE (T1.Con_GUID =
'{5BAAFAFF-6D2E-4634-9E8F-B6C8E6B067E1}') AND
NOT((T1.Fund_Number IN('421', '422', '423', '424', '425',
'428', '431', '432', '433', '434', '435', '450', '451', '452',
'453', '454', '455', '456', '457', '458', '459', '463',
'490')));
SELECT T2.CF_Percent,T2.CF_CompanyIdName,
T2.StateOrProvince,T2.Country,T2.Telephone1 FROM
GGOF_CRMEXT.dbo.ContactView T2 WHERE (T2.ContactId = ?);


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
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Virtuoso
posted Hide Post
The JOIN is being honored, but...

The first two messages inform you that Focus could not pawn off the job of assembling the joint records to the server, because the data do not all reside on a single server. Instead the logical join is being accomplished by Focus ("FOCUS-MANAGED JOIN SELECTED"), which reads separately from the two sources and assembles the joint records.

Additionally (as the next 2 messages note), as a result Focus had to pull detail-level data from the two servers, rather than letting the server boil down the data to the requested level of aggregation.

In other words, it's doubly inefficient relative to the case where all the data are available through a single server.

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, 2005Report This Post
<JG>
posted
As j.g. says the join is being honored.

When working within a single database structure or databases on the same platform that can talk to each other
then the principle database can manage the process, however even they may need to scan and/or spool.

The issue is when you are cross platform and/or cross database, they often are unable to manage the work and so Focus/WebFocus
takes control and spools the data to the lowest level requested from each database/system and then resolves your request.

Often it is more efficient to request to the level required on the difefernet database/system and then perform your join on the resultant hold files (either dbms or indexed Focus) of cause if you do not have all the required keys for the extracts then it may not be such an advantage.

A method that can dramatically improve performance if the first source is supplying most of the keys for selection from the second is to extract your keys from the first and then pass them as selections to the second and then processing the resultant answer sets.
Or if you are wanting to work from rolled up data at the same level from the different sytems extract the rolled up data and then process that. That way you pass as much of the work as possible to the DBMS.

I've seen these sort of techniques reduce processing times by up to 80 %.

Cross platform/database joins are inherently inefficient, that said Focus/WebFocus is just about your only option unless you want to go to an ETL type based solution which just means that the data is not live but staged and always out of date.
 
Report This Post
Expert
posted Hide Post
Thanks to j.g. and JG.

(what are the odds?)


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
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report 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     Joining tables between subsystems

Copyright © 1996-2020 Information Builders