Focal Point
[CLOSED] Two Hold file

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

September 17, 2014, 12:37 AM
Ramya
[CLOSED] Two Hold file
Hi All,

I have requirement where I have to merge two hold files whcih has different set of columns.

TABLE FILE HLD1
PRINT
COLA
COLB
END
-RUN

TABLE FILE HLD2
PRINT
COLC
END
-RUN


How to bring COLA, COLB and COLC to same hold file?

Regards,
Ramya

This message has been edited. Last edited by: <Kathryn Henning>,


WebFocus 7702
HTML
September 17, 2014, 12:46 AM
Waz
Is there a common field between the two ?

Can you give an example of HLD1, HLD2 data and what you expect out ?


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!

September 17, 2014, 01:05 AM
Ramya
Yeah there are common fields between HLD1 and HLD2. So I can go for join right?

so far I was thinking about appending for which we need equal number of fields and format should be same and that was no he case for me.

Thanks Waz.


WebFocus 7702
HTML
September 17, 2014, 01:29 AM
Waz
Just make sure the fields being joined are the same format.

Also if you are joining two hold files (not FOCUS files with indexes) they needs to be sorted in key field order.


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!

September 17, 2014, 02:31 AM
GamP
Why not use MATCH?
Easier to use for fixed format hold files than JOIN and more types of combination of the data contents are possible.


GamP

- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
September 17, 2014, 07:06 AM
Ram Prasad E
Do you want to merge the data or you want to join the data. Since merge do not need any relation but Join needs atleast one. If there is no relation still you need to join, then you need to use CROSS join.

Thanks,
Ram


WebFOCUS 8.1.05
Windows
http://ibiwebfocus.wordpress.com
https://www.facebook.com/groups/ibi.webfocus/
September 17, 2014, 07:45 AM
MartinY
Or at worst do it this way, the result looks stupid, but it's only for the logic Wink :

TABLE FILE CAR
PRINT COUNTRY
      COMPUTE CAR/A16 = '';
      COMPUTE MODEL/A24 = '';
ON TABLE HOLD AS HLD1
END

TABLE FILE CAR
PRINT COMPUTE COUNTRY /A10 = '';
      CAR
      MODEL
ON TABLE HOLD AS HLD2
END

TABLE FILE HLD1
PRINT COUNTRY
      CAR
      MODEL
MORE
FILE HLD2
END



WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007