Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [closed] MODIFY syntax help

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[closed] MODIFY syntax help
 Login/Join
 
Platinum Member
posted
Here is what I'd like to do:

Modify DB_TABLE_ABC from TEMP_INPUT, match KEY1 and KEY2, insert or update COL1; set MOD_TYPE='Updated' if there is a match in the table, set MOD_TYPE='Inserted' if there is no match and insert the record.

What is the correct syntax?



TABLE FILE TEMP_ABC
PRINT 
KEY1
KEY2
COL1
ON TABLE HOLD AS TEMP_INPUT FORMAT ALPHA
END


MODIFY DB_TABLE_ABC
FIXFORM FROM TEMP_INPUT
MATCH KEY1 KEY2
ON MATCH   UPDATE  COL1 MOD_TYPE='Updated'
ON NOMATCH INCLUDE COL2 MOD_TYPE='Inerted'
DATA ON TEMP_INPUT
END
-RUN




Thanks!

This message has been edited. Last edited by: bug,


7.66 and 7.704
System: Windows / AIX / Linux
Output: Mostly HTML, with some PDF, Excel and Lotus(!)
 
Posts: 147 | Location: Toronto (GTA) | Registered: May 25, 2005Report This Post
Virtuoso
posted Hide Post
Try this approach:
MODIFY DB_TABLE_ABC
FIXFORM FROM TEMP_INPUT
MATCH KEY1 KEY2
ON NOMATCH COMPUTE MOD_TYPE='Inserted';
ON NOMATCH INCLUDE 
ON MATCH   COMPUTE MOD_TYPE='Updated';
ON MATCH   UPDATE  COL1 MOD_TYPE
DATA ON TEMP_INPUT
END


Alan.
WF 7.705/8.007
 
Posts: 1451 | Location: Portugal | Registered: February 07, 2007Report This Post
Platinum Member
posted Hide Post
This works! Thank you so much Alan!

quote:
Originally posted by Alan B:
Try this approach:
MODIFY DB_TABLE_ABC
FIXFORM FROM TEMP_INPUT
MATCH KEY1 KEY2
ON NOMATCH COMPUTE MOD_TYPE='Inserted';
ON NOMATCH INCLUDE 
ON MATCH   COMPUTE MOD_TYPE='Updated';
ON MATCH   UPDATE  COL1 MOD_TYPE
DATA ON TEMP_INPUT
END


7.66 and 7.704
System: Windows / AIX / Linux
Output: Mostly HTML, with some PDF, Excel and Lotus(!)
 
Posts: 147 | Location: Toronto (GTA) | Registered: May 25, 2005Report This Post
Expert
posted Hide Post
There are still MODIFY manuals on the documentation site, but they are a little difficule to find.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [closed] MODIFY syntax help

Copyright © 1996-2020 Information Builders