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 have a way to concatenate a field from several rows into a field on another table in a single row?
I am trying to take rows of comments in Oracle and put them in one record in another table using an ETL. I have been able to develop and run the code using SQL but when I put it in an ETL, I am getting an error on the CONNECT BY statement (FOC14069) SYNTAX ERROR ON LINE AT 'CONNECT' --Expected ')'. Ths SQL is as follows:
SELECT MC.REPORT_ENTITY AS MACH_RE, MC.BUSINESS_UNIT AS MACH_BU, MC.MACHINE_NUMBER AS MACH_NUM, SUBSTR(TO_CHAR(SYS_CONNECT_BY_PATH(MC.COMMENTS,'_')),2) AS MACH_COMM FROM (SELECT REPORT_ENTITY, BUSINESS_UNIT, MACHINE_NUMBER, COMMENTS, COMMENT_NUMBER AS VAL_INDEX FROM MACHINE_COMMENTS) MC WHERE CONNECT_BY_ISLEAF = 1 CONNECT BY ( VAL_INDEX = PRIOR VAL_INDEX + 1 AND MACHINE_NUMBER = PRIOR MACHINE_NUMBER START WITH VAL_INDEX = 1)
Does anyone have another way of doing this? Any assistance or suggestions is appreciated.
Posts: 9 | Location: St. Pete, FL | Registered: January 04, 2007
Thanks for the pointing me in the direction of the forums from 2004. I looked before I posted mine and didn't see this.
I was able to get the flow to work using a DBMS SQL Flow and then attaching that to another flow that does the rest of my joins and that appears to be working, but it seems like extra work. I thought there might be a function that does this or a little easier way.
Posts: 9 | Location: St. Pete, FL | Registered: January 04, 2007