Previous Page | Next Page

The SASEFAME Interface Engine

Example 36.7 Remote Fame Access Using Fame CHLI

When you run Fame in a client/server environment and also have Fame CHLI capability enabling access to the server, you can access Fame remote data. Access the remote data by specifying the port number of the TCP/IP service that is defined for the frdb_m and the node name of the Fame master server in the physical path. In this example, the Fame server node name is STONES, and the port number is 5555, as was designated in the Fame master command. See the section "Starting the Master Server" in the Guide to Fame Database Servers for more information about starting your Fame master server.

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 36.7.1 shows the results.

Output 36.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