Jump to content

Is there a way to union synonyms in the synonym editor


Erin Trotter

Recommended Posts

Hi Erin,

If you have multiple "binary" files that have the same structure/format, then you could perhaps concatenate them with the FILEDEF command e.g.

The following commands concatenate the three files.

FILEDEF FILE1 DISK app1/file1.ftm

FILEDEF FILE2 DISK app1/file2.ftm

FILEDEF FILE3 DISK app1/file3.ftm

FILEDEF FILE1 CONCAT FILE2 FILE3

The following procedure issues a request against the concatenated files.

TABLE FILE FILE1

SUM COGS_US REVENUE_US

BY STATE_PROV_NAME

ON TABLE SET PAGE NOPAGE

ON TABLE SET STYLE *

GRID=OFF, SIZE=8,$

END

Server Administration

241

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...