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.
I need to read data from a table in SQLSERVER and write to a table in Oracle database directly. Can I do that?
I dont want to PRINT and HOLD the records, instead of that I need to write that directly to the Oracle table.
SQL SQLMSS SET SERVER MASS SQL SQLMSS SELECT * FROM MASS_Application; TABLE FILE SQLOUT PRINT * -****Is there any way to write directly to Oracle table? END -EXITThis message has been edited. Last edited by: Kerry,
Regards, Cyril Joy.
WF Production 8008 on Linux.
Posts: 143 | Location: Rochester,NY. | Registered: August 20, 2004
-**********DEFINE THE ORACLE CONNECTION PARAMETERS SET SQLENGINE=SQLORA SQL SET SERVER connection -RUN SQL SET CONNECTION_ATTRIBUTES connection/userid,password -RUN
-*******DEFINE AN ADAPTER FOR SQL SERVER SQL SQLMSS SET SERVER XAP
-*********THE FOLLWING CODE WILL CREATE AN ORACLE TABLE NAMED STG1_ORG_LINKAGE -*********FROM THE SQLSERVER TABLE NAMED ORG_LINKAGE SQL SQLMSS SELECT * FROM ORG_LINKAGE; TABLE FILE SQLOUT PRINT * ON TABLE HOLD AS STG1_ORG_LINKAGE FORMAT ORACLE END
Regards, Cyril Joy.
WF Production 8008 on Linux.
Posts: 143 | Location: Rochester,NY. | Registered: August 20, 2004
Is it possible to modify/update and existing table?
Of course.
1. HOLD way (and "wrong" way)
Step 1. ON TABLE HOLD AS [my temporary table] FORMAT SQLORA Step 2. run SQL SQLORA INSERT INTO [my existing table] SELECT * FROM [my temporary table]; COMMIT; -- I'm not sure, but in Oracle you can COMMIT even if no modifications was done END
2. MODIFY ( "right" way) Cyril, you even do not have to learn MODIFY
Start DataManagement Console, draw your needed data flow, save, and: a) grab an paste it in you report b) EX this flow from your report c) -INCLUDE this flow in your report
WF 7.6.2, WinNT/2K, MSSQL 2K, MSOLAP 2K, BID
Posts: 79 | Location: Moscow | Registered: April 27, 2007