Focal Point
Hold Files and New Data

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/7531013622

May 03, 2007, 02:17 PM
peplawusb
Hold Files and New Data
Does anybody know if you can create a HOLD file in WebFOCUS and then add more (new) data to the existing HOLD file? Just a question that has peaked curiosity.
May 03, 2007, 02:36 PM
KevinG
Check out the MORE command


WF 7.6.10 / WIN-AIX
May 03, 2007, 03:30 PM
smiths
...or APPEND to a file:

FILEDEF TEMPHOLD DISK temphold.ftm

TABLE FILE CAR
PRINT
CAR
SEATS
BY COUNTRY
WHERE COUNTRY EQ 'ENGLAND'
ON TABLE HOLD AS TEMPHOLD
END
-RUN

FILEDEF TEMPHOLD DISK temphold.ftm (APPEND

TABLE FILE CAR
PRINT
CAR
SEATS
BY COUNTRY
WHERE COUNTRY EQ 'JAPAN'
ON TABLE HOLD AS TEMPHOLD
END
-RUN

TABLE FILE TEMPHOLD
PRINT *
END


Regards,
Sean


------------------------------------------------------------------------
PROD: WebFOCUS 7.6.2 on Unix AIX/Tomcat/Servlet Mode
TEST: WebFOCUS 7.6.2 on Unix AIX/Tomcat/Servlet Mode