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.
TABLE FILE TESTFOC
PRINT LAST_NAME
FIRST_NAME
IND1
IND2
LAST_UPDATE_BY
LAST_UPDATE
BY EID
ON TABLE HOLD AS TSTDATA FORMAT ALPHA
END
-RUN
SQL SQLORA SET ORACHAR FIX
MODIFY FILE TESTORA
FIXFORM FROM TSTDATA
DATA ON TSTDATA
END
-RUN
Basically, what I'm trying to do is move data from a focus db to an oracle table. All the fields except the EID has MISSING=ON on the master file for both TESTFOC.mas and TESTORA.mas. The problem is, if a field is null, it takes the next field over and puts it on that field. So, say, IND1 is null, it populates IND2 on IND1, then IND2 gets populated with LAST_UPDATE_BY which then throws an oracle error message because IND2 is A1V while LAST_UPDATE_BY is A8V. What's going on?
I'm running this on 7.6.4.This message has been edited. Last edited by: Kerry,
Have to have FORMAT ALPHA. Otherwise, EDASERVE CRASH. Probably because LAST_UPDATE is a date field. Not sure. I know from past experience that if I have a date field, I need to do format alpha.
I tried to do FORMAT COMMA but dunno how to word that in the MODIFY... I mean, it can't be FIXFORM... and FREEFORM is no good...