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.
This Works- SQL SELECT CAR,MODEL FROM CAR ; TABLE FILE SQLOUT PRINT * END
This DOES NOT! SELECT CAR,MODEL FROM ( SELECT * FROM CAR ) ; TABLE FILE SQLOUT PRINT * END
it gives me this error message (FOC012) THE WORD 'FILE' OR THE FILENAME APPEARS TWICE BYPASSING TO END OF COMMAND (FOC205) THE DESCRIPTION CANNOT BE FOUND FOR FILE NAMED: HOLD10
Thanks for your help and suggestions.This message has been edited. Last edited by: Kerry,
WF 7.1.1, WF Developer studio 7.1.1, Windows & Mainframe, HTML
The first is correct syntax for SQL Translation. The second is partial syntax for SQL Passthrough. They are not the same. The SQL Passthrough needs the information statements on the RDBMS database you are connecting to, which you don't supply. Just as well -- the CAR file is FOCUS, not RDBMS anyway.
So, I would have to save the output from the first SQL statement(inner query) to a hold file and then perform another SQL (outer query) against the hold file?
thanks!
WF 7.1.1, WF Developer studio 7.1.1, Windows & Mainframe, HTML
In our trials, this techinque of coding faux SQL pass-through statements against non-RDMBS data sources has very limited functionality. Forget going as far as sub-selects, it does not support most of the basic native SQL functions either.
However when using "SQL DB2" or "SQL SQLMSS" against a real RDBMS, the query can be as complex as anywhere else.
Sandeep Mamidenna
------------------------------------------------------------------------------------------------- Blue Cross & Blue Shield of MS WF.76-10 on (WS2003 + WebSphere) / EDA on z/OS + DB2 + MS-SQL MRE, BID, Dev. Studio, Self-Service apps & a dash of fun !!
Posts: 218 | Location: Jackson, MS | Registered: October 31, 2006