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.
Hi, I am trying to join two master files created from SQL server tables. Table A contains one primary key Key1. Table B contains composite primary keys.Key1+Key2 I am writing a join condition as follows Join Key 1 in Table A to Key 1 in table B as J0 end Table file TableA print * end Which retrieves records.But,swiching on the SQLTrace SET paramter(SET TRACEON=SQLAGGR//CLIENT) shows error 25901 and 25904 in the view source text file.
Can any one help me or explain me how exactly the joins are working and how to overcome this error.
Terry thank you so much.But I used ALL before looking into the reply.My need has become different-I need MATRIX. I have 2 rows in table TABLE1 for the key KEYA and TABLEB contains the 3 rows for the same key KEYA. Following is an Example: TableA ---------- col1 col2 ----------------- keyA kasi keyA abc keyB xyz
Now I want to join Table A and Table B in such a way that i can get 2x3 matrix. I tried as follows join col1 in TableA to col1 in tableB as j0 End As well as join col1 in TableA to All col1 in tableB as j0 End I am getting FOC1070 or FOC1071 error.FROM or TO value in Join is out of range. Even after interchanging the position of the TableA and TableB, i am getting the same error. Any idea to form the MATRIX is really helpful.
Hi, No they are not flat files... My data is available in an RDBMS.. I am having a common problem with the datawarehouse is the data are populated with Many to Many relationship in all the tables.
Consider an Employee attended various training programs.(Training table)consider it contains 4 records.EmpId & Course code are serogate keys.
The dates attended is in another table. Consider for the same course it contains multiple rows.(Timetable)-Consider it contains 9 rows.EmpId & Dt_course_attended & courseid are serogate keys.