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'm having a bit of trouble with a Conditional Join with DB2 tables.
I expected the generated SQL to reflect the conditional join, i.e. that the SQL would look something like this:
SELECT distinct
T1.COMM_CUST_FAC_KEY, T1.DEFAULT_DT, T1.FAC_TP_CD,
T1.PROD_CD, T1.RESOLUTION_IND, T1.RESOLUTION_DT,
T1.COMM_CUST_KEY, T2.TIME_DIM_KEY, T2.PERIOD_TYPE,
T2.PERIOD_START_DT, T2.PERIOD_END_DT
FROM
BSLC.DFLT_COMM_CUST_FAC_D T1,
LEFT JOIN BSLC.TIME_D T2
ON T1.DEFAULT_DT >= T2.PERIOD_START_DT AND
T1.DEFAULT_DT <= T2.PERIOD_END_DT AND
T2.PERIOD_TYPE = 'MONTH'
WHERE
(T1.RESOLUTION_DT BETWEEN '2008-11-01' AND '2009-10-31')
AND
(T1.RESOLUTION_IND = 'Y');
Instead it looks like a normal SQL statement:
SELECT
T1.COMM_CUST_FAC_KEY, T1.DEFAULT_DT, T1.FAC_TP_CD,
T1.PROD_CD, T1.RESOLUTION_IND, T1.RESOLUTION_DT,
T1.COMM_CUST_KEY, T2.TIME_DIM_KEY, T2.PERIOD_TYPE,
T2.PERIOD_START_DT, T2.PERIOD_END_DT
FROM
BSLC.DFLT_COMM_CUST_FAC_D T1,BSLC.TIME_D T2
WHERE
(T1.DEFAULT_DT >= T2.PERIOD_START_DT)
AND
(T1.DEFAULT_DT <= T2.PERIOD_END_DT)
AND
(T2.PERIOD_TYPE = 'MONTH')
AND
(T1.RESOLUTION_DT BETWEEN '2008-11-01' AND '2009-10-31')
AND
(T1.RESOLUTION_IND = 'Y')
ORDER BY
T1.COMM_CUST_FAC_KEY
FOR FETCH ONLY;
Any ideas regarding this?
Thank you,
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
I think I'm addressing all the keys, there are no non-DB2 tables and I think the right results are returned, I just thought the generated SQL would reflect the WebFOCUS Conditional Join.
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