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     [CLOSED] Joining alpha and number fields issue

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Joining alpha and number fields issue
 Login/Join
 
Silver Member
posted
I am trying to join two tables and the problem is that in one the field is Alpha and in the other its a number. I thought the following would work but it just runs forever and does nothing. What is wrong with this code?

JOIN CLEAR *
-*
DEFINE FILE F4211
NEWFIELD/I8=EDIT(SDRORN);
END

TABLE FILE F4211
PRINT NEWFIELD SDRORN 
WHERE SDDOCO EQ 793581
AND SDRORN EQ '00413249'  
ON TABLE HOLD AS NSR01
END
-RUN



JOIN NEWFIELD IN NSR01 TO WMDOCO IN F3111 AS J1

TABLE FILE NSR01
PRINT NEWFIELD SDRORN WMDOCO 
END

This message has been edited. Last edited by: Kerry,


WebFOCUS 7.6.9
Windows
all output (Excel, HTML, PDF)
 
Posts: 42 | Registered: April 29, 2010Report This Post
Expert
posted Hide Post
Is "WMDOCO" (IN F3111) an I8?

What segtype is "WMDOCO" (IN F3111)?

Are you getting anything out of the final TABLE FILE request? Do an ON TABLE HOLD and see the number of LINES and RECORDS... Let us know...

Read up on the JOIN Syntax for more info...
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Silver Member
posted Hide Post
It turns out it does work after all, just takes forever. I find it strange since its only one record, but I guess its normal.


WebFOCUS 7.6.9
Windows
all output (Excel, HTML, PDF)
 
Posts: 42 | Registered: April 29, 2010Report This Post
Expert
posted Hide Post
No Josh, That should NOT Be Normal. Perhaps there a cartesian in there someplace...

How many records are in "NSR01"? "F3111"?

Did you do the HOLD thing in my previous post?
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
Josh,

This is one of those times that it might be advisable to use SQL passthru against your JDE files so that you can achieve the extract in one pass instead of two bites.

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Virtuoso
posted Hide Post
You may be able to forward-define that column:
JOIN CLEAR *
JOIN NEWFIELD WITH SDRORN IN F4211 TO WMDOCO IN F3111 AS J1
DEFINE FILE F4211
  NEWFIELD/I8 WITH SDRORN = EDIT(SDRORN);
END
TABLE FILE F4211
  PRINT NEWFIELD SDRORN WMDOCO 
END


What's taking so long is probably WebFOCUS downloading both tables to do the join locally. With some luck the above scenario is enough to help WF generate an SQL query for the join instead.


WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010
: Member of User Group Benelux :
 
Posts: 1669 | Location: Enschede, Netherlands | Registered: August 12, 2010Report 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     [CLOSED] Joining alpha and number fields issue

Copyright © 1996-2020 Information Builders