Previous Page | Next Page

The SASEFAME Interface Engine

Example 34.7 Remote FAME Access Using FAME CHLI

Suppose you are running FAME in a client/server environment and have FAME CHLI capability allowing you access to your FAME server. You could access your FAME remote data by specifying the port number of the tcpip service that is defined for your frdb_m and the node name of your FAME master server in your physical path. In this example, the FAME server node name is STONES, and the port number is 5555, which was designated in the FAME master command. Refer to "Starting the Master Server" in the Guide to FAME Database Servers for more information about starting your FAME master server. This output is shown in Output 34.7.1.

   options ls=78;
   title1 "DRIECON Database, Using FAME with REMOTE ACCESS VIA CHLI";
   
   libname test1 sasefame '#5555@stones $FAME/util';
   
   data a;
      set test1.driecon;
      keep YP ZA ZB;
      where date between '01jan98'd and '31dec03'd;
   run;
   
   proc means data=a n;
   run;

Output 34.7.1 Summary Statistics for the Remote FAME Data
DRIECON Database, Using FAME with REMOTE ACCESS VIA CHLI

The MEANS Procedure

Variable Label N
YP
ZA
ZB
PERSONAL INCOME
CORPORATE PROFITS AFTER TAX EXCLUDING IVA
CORPORATE PROFITS BEFORE TAX EXCLUDING IVA
5
4
4

Previous Page | Next Page | Top of Page