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 am running following fex file ----------------------- -SET &ECHO=ALL; ENGINE SQLORA SET DEFAULT_CONNECTION oraprod SQL SQLORA
insert into target01 values ('5665'); COMMIT; insert into target01 values ('6656'); COMMIT;
-RUN
-*
----------------------
When I query my target table target01, it only shows one row inserted. It has one record with value 5655. Target table is in Oracle 10g and DM is 7.6.4 on HpUX.
What is missing in my fex which is preventing it to insert the second row?
Hi, Thanks for help. The solution provided by you was helpful. Q. If I have 10 sql insert statements, I will have to copy it in the fex file you have created or can i put these statemetns in a file and refer to it in my fex?
Thanks for help and I was able to insert records using your technique. Now my question is, if I have 100 insert statement or more, I will need to put SQLORA and END statement between each statement. Is that correct? Is there any other workaround to void this tedious process.
Are you required to do this with SQL or can you use MODIFY? Is your data in a file or do you have to manually enter the data?
If you are going to be doing much SQL code, I would recommend "SQL in a Nutshell" . It is about $45 and should be available from any of the major online booksellers.
Pat WF 7.6.8, AIX, AS400, NT AS400 FOCUS, AIX FOCUS, Oracle, DB2, JDE, Lotus Notes
Posts: 755 | Location: TX | Registered: September 25, 2007
I have file with SQL commands like Insert into customer ....; delete from vendor ....; update client ......; insert into vendor ......; Insert into customer ....; delete from vendor ....;
I want to know how can I user SQl passthru feature to usethe above file as source and apply it to target Oracle database.