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.



Read-Only Read-Only Topic
Go
Search
Notify
Tools
Multiple hold files
 Login/Join
 
<mohith>
posted
Hi,
I have to extract data like this for a report:
Table file demography has employee ids and their names...
I have another table id which has
emp id, manager id.
Now i need both the employee name as well as the manager name. How do i reference the same table file in a join?
 
Report This Post
Guru
posted Hide Post
At the top of this screen you should be able to see "search the Technical Documentation Library" icon.
Click on it and look for information on the JOIN topic.
 
Posts: 252 | Location: USA | Registered: April 15, 2003Report This Post
<DocServices>
posted
Greetings,

For information on joins, see the following manuals:


  • Creating Reports With Graphical Tools 5.3 (Chapter 10, Joining Data Sources)


  • WebFOCUS Managed Reporting End User's Manual 5.3 (In Chapter 6, see the following topic: Working With Joins)


Hope this helps.

Regards,
Jennifer
 
Report This Post
Virtuoso
posted Hide Post
Assuming it's not how to do joins that is the issue, but that you want both information bits, I think you'll have to do two passes

join emp_id in base to emp_id in id as j1
Table file base
...
hold
end

join manager_id in base to emp_id in id as j2
table file base
...
hold
end
join the hold files etc.

Sketchy at most but you get the idea.
 
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004Report This Post
Expert
posted Hide Post
Something like this:

join emp_id in base to emp_id in id tag t1 as j1
join manager_id in base to emp_id in id tag t2 as j2

table file base
print
emp_id
t1.emp_name
manager_id
t2.emp_name as 'man_name'
on table set asnames on
on table hold
end
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders