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've got a MODIFY script that loads a hold file into a table. The job is fast if the hold file is small, and slow if it is large, un-surprisingly.
The table itself is very basic; five fields, no keys. I think the MODIFY job is doing inserts row by row, and I feel that there are probably some performance tuning opportunities here.
This is my code:
-SET &ECHO=ALL;
-SET &UNIQUE_ID=&UNIQUE_ID+0;
-SET &HOLDNAME='BORs_'||'&UNIQUE_ID.EVAL'||'_'||'&YYMD.EVAL'||'_'||'&TOD.EVAL';
SET ASNAMES=ON
TABLE FILE FOCCACHE/STEPONE
PRINT
ID AS BOR_ID
COMPUTE UNIQUEID/P20=&UNIQUE_ID;
COMPUTE USER_ACCT/A100='&IBIMR_user';
COMPUTE LOG_DATE/A10='&YYMD';
COMPUTE LOG_TIME/A8='&TOD';
ON TABLE HOLD AS &HOLDNAME
END
-SET &NUMBEROFLINES=&LINES;
-** Load the data into the SQL Server table
MODIFY FILE SUMARYFORINVOICING_BOR_IDS_TO_UNIQUE_ID_V2
FIXFORM FROM &HOLDNAME
MATCH BOR_ID UNIQUEID USER_ACCT LOG_DATE LOG_TIME
ON NOMATCH INCLUDE
ON MATCH REJECT
CHECK 2000
DATA ON &HOLDNAME
END
-RUN
Any advice on making this fly?
Cheers,
JoeyThis message has been edited. Last edited by: <Kathryn Henning>,
-WebFOCUS 8.2.01 on Windows
Posts: 318 | Location: Los Angeles, CA | Registered: November 15, 2005