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.
Does anyone know of a way to simulate or rather translate the "WHERE NOT EXISTS" statement of Oracle into WebFocus?
Where not exists is used when you need to find missing links between two tables. e.g. Department has a "Deptno" field (primary key) and Employee also has a "Deptno" field (foreign key) You'd go like SELECT count(*) from employee e where not exists ( select '1' from department d where d.deptno = e.deptno) And get the amount of employees without a department.
I've tried using "MATCH" with AFTER MATCH OLD-NOR-NEW and NEW-NOT-OLD, but when I use COUNT equ_equnr it still gives me an incorrect result.
Code: DEFINE FILE POPLAN -* To exclude the possibility that WebFocus is missing joins with "null" fields. EQUNR/A18 = IF MPOS_EQUNR = ' ' THEN '0' ELSE MPOS_EQUNR; END
-* Equipment MATCH FILE EQUIPMNT PRINT EQU_EQART EQU_TPLNR EQU_EQTYP BY EQU_EQUNR
RUN -* Preventive Maintenance Plan FILE POPLAN PRINT * BY EQUNR AFTER MATCH HOLD AS 'EQU' OLD-NOR-NEW END
-* Equipments without POPlan
TABLE FILE EQU COUNT EQU_EQUNR END
As usual any help is greatly appreciated. Greets, Tim.
WebFocus 5.2.4 iWay ETL Manager 5.2.4 Windows 2000
Posts: 44 | Location: Belgium | Registered: January 10, 2005
DEFINE FILE POPLAN -* To exclude the possibility that WebFocus is missing joins with "null" fields. EQUNR/A18 = IF MPOS_EQUNR = ' ' THEN '0' ELSE MPOS_EQUNR; END
EQUNR/A18 MISSING ON = IF MPOS_EQUNR EQ ' ' THEN MISSING ELSE MPOS_EQUNR;
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003