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.
we have a business view. By using that view the user builds a report in InfoAssist. But this report runs very slow. The SQL trace gives this information:
FOC2675 - CANNOT PASS INNER JOIN TO SEGMENT GWTB311 BELOW AN OUTER ONE
We have a fact table (T1) with an account number in IBAN format. It reads a dimension table (T2) containing accounts by using a left join. We use a left join because not all accounts are in T2. Next T2 joins to T3, this is GWTB311, by using account number in BBAN format. This is an inner join.
So, in SQL
select from T1 left outer join T2 on T1.IBAN = T2.IBAN inner join T3 on T3.BBAN = T2.BBAN
But why can't WebFOCUS pass this? Our default is SET ALL = OFF
regards RonThis message has been edited. Last edited by: FP Mod Chuck,
I would try 3 things and choose the one(s) that gives the desired result
1- Change the INNER join to LEFT_OUTER. Since it's already an INNER in the DB, accessing the data with LEFT_OUTER will not change the result. 2- Try SET ALL = PASS 3- Try SET ALL = ON
But you must refer to the DB2 adapter specific configuration and options since it's seems to be the case according to your other discussions.This message has been edited. Last edited by: MartinY,
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013