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.
Is there a limit to the number of fields a file can contain after a join? I'm joining table 1 to table 2, then joining table 2 to table 3. I see field 1 after the first join but it is not in the table after the second join.This message has been edited. Last edited by: Selena B,
Selena, when you join, its A to B and then A to C, where A is now the entity formed after the first join (A=A+B); do a ? JOIN after your first join and a CHECK FILE filenameA PICTURE which will give you an interesting view. then table file your first join to see what you get. if you're happy, go on to the add the second join, and repeat the ? JOIN and the CHECK. You can use DevStu to do the joins, it will take all the worry out, and give you a picture.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
Susannah thank you so much for your input. You're right and that's how I meant to reference it - table 1 to table 2 then table 1 to table 3. That is in fact an interesting view. I didn't know you could do that. I'm not sure I'm understanding all of the information it's listing though. One thing I did notice is that it's saying the total # of fields after the first join is 100 when it should be 102. After the second join it lists 145 for the total # of fields when there should be 160. It also list out 4 fields under each table that I'm joining together. (I'm not sure why it lists 4. I'm only joining on 2 fields). I hope this makes sense.
you're making progress nicely... the PICTURE option on the CHECK command just lists 4 fields, that's the nature of the thing. just to show you whats hooked up to what.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
really? i didn't know that, i had used the ?ff statement but din't think she would need the field types- so sorry about that should have checked before i posted... :d
Developer Studio 7.64 Win XP Output: mostly HTML, also Excel and PDF
"Never attribute to malice that which can be adequately explained by stupidity." - Heinlein's Razor
Posts: 285 | Location: UK | Registered: October 26, 2007
Thank you all for your input. PBrightwell - yes I am using 'AS' along with tags. One of the dbas nicely volunteered to write a sql passthrough with all of the joins. I will continue to play around in the WF code using the suggestions posted here. Again, thank you all so much!