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.
SET SQLEngine = SQLORA SQL SERVER SET ORABPM SET SQL CONNECTION_ATTRIBUTES 10.94.137.155:1521 / BPMTAOBI, BPMTAOBI
SQL SQLORA SELECT * FROM BPMTAOBI.ACTIVIDAD_TRAMITADOR END
return error
SET SQLEngine = SQLORA SQL SERVER SET ORABPM ORABPM@10.94.137.155 CONNECTION_ATTRIBUTES SQL SET: 1521/BPMTAOBI, BPMTAOBI SQL SQLORA SELECT * FROM BPMTAOBI.ACTIVIDAD_TRAMITADOR END (FOC1671) INSTRUCTION SET SERVER TO ORACLE ORABPM INTERFACE OUT OF SEQUENCE (FOC1671) INSTRUCTION SET SERVER TO ORACLE ORABPM INTERFACE OUT OF SEQUENCE (FOC1400) SQLCODE IS 942 (HEX: 000003AE) (FOC1409) SQL TABLE NOT FOUND. TABLE FOR REVIEW AND TABLE segname : ORA-00942: table or view does not exist : Erroneous token: ACTIVIDAD_TRAMITADOR L (FOC1405) SQL PREPARE ERROR.
I need help please
Thank you, JavierThis message has been edited. Last edited by: Kerry,
ENGINE SQLORA SET CONNECTION_ATTRIBUTES ORABPM BPMTAOBI/BPMTAOBI@//10.94.137.155:1521/ORABPM
ENGINE SQLORA SET DEFAULT_CONNECTION ORABPM
SQL SQLORA
SELECT * FROM BPMTAOBI.ACTIVIDAD_TRAMITADOR;
TABLE FILE SQLOUT
PRINT *
END
I would advise though that you create an Oracle adapter connection in the Reporting Server's Web Console so it would be available at the server level and not buried in your code (which is also exposing your user credentials )
In addition, I've found it easier to use "named" TNS connections intead of the EZCONNECT approach you are following. they both work but in terms of maintenance and debugging the former works best, in my opinion.
ENGINE SQLORA SET CONNECTION_ATTRIBUTES ORABPM userid pwd
Kamesh, that is the way to go provided there is an "ORABPM" connection configured in the tnsnames.ora (Oracle client on the Reporting Server side) which apparently Javier doesn't have as he's attempting to connect by directly providing specific server/host/port info. Hopefully he'll find a way to create a TNS entry for that connection to simplify his configuration.